Skip to main content

Boolean operations on paths.

Project description

Build Status PyPI Python Versions

BooleanOperations

Boolean operations on paths based on a super fast polygon clipper library by Angus Johnson.

You can download the latest version from PyPI:

https://pypi-hypernode.com/project/booleanOperations.

Install

Pip is the recommended tool to install booleanOperations.

To install the latest version:

pip install booleanOperations

BooleanOperations depends on the following packages:

All dependencies are available on PyPI, so they will be resolved automatically upon installing booleanOperations.

BooleanOperationManager

Containing a BooleanOperationManager handling all boolean operations on paths. Paths must be similar to defcon, robofab contours. A manager draws the result in a pointPen.

from booleanOperations import BooleanOperationManager

manager = BooleanOperationManager()

BooleanOperationManager()

Create a BooleanOperationManager.

manager.union(contours, pointPen)

Performs a union on all contours and draw it in the pointPen. (this is a what a remove overlaps does)

manager.difference(contours, clipContours, pointPen)

Knock out the clipContours from the contours and draw it in the pointPen.

manager.intersection(contours, clipContours, pointPen)

Draw only the overlaps from the contours with the clipContoursand draw it in the pointPen.

manager.xor(contours, clipContours, pointPen)

Draw only the parts that not overlaps from the contours with the clipContoursand draw it in the pointPen.

manager.getIntersections(contours)

Returning all intersection for the given contours

BooleanGlyph

A glyph like object with boolean powers.

from booleanOperations.booleanGlyph import BooleanGlyph

booleanGlyph = BooleanGlyph(sourceGlyph)

BooleanGlyph(sourceGlyph)

Create a BooleanGlyph object from sourceGlyph. This is a very shallow glyph object with basic support.

booleanGlyph.union(other)

Perform a union with the other. Other must be a glyph or BooleanGlyph object.

result = BooleanGlyph(glyph).union(BooleanGlyph(glyph2))
result = BooleanGlyph(glyph) | BooleanGlyph(glyph2)
booleanGlyph.difference(other)

Perform a difference with the other. Other must be a glyph or BooleanGlyph object.

result = BooleanGlyph(glyph).difference(BooleanGlyph(glyph2))
result = BooleanGlyph(glyph) % BooleanGlyph(glyph2)
booleanGlyph.intersection(other)

Perform a intersection with the other. Other must be a glyph or BooleanGlyph object.

result = BooleanGlyph(glyph).intersection(BooleanGlyph(glyph2))
result = BooleanGlyph(glyph) & BooleanGlyph(glyph2)
booleanGlyph.xor(other)

Perform a xor with the other. Other must be a glyph or BooleanGlyph object.

result = BooleanGlyph(glyph).xor(BooleanGlyph(glyph2))
result = BooleanGlyph(glyph) ^ BooleanGlyph(glyph2)
booleanGlyph.removeOverlap()

Perform a union on it self. This will remove all overlapping contours and self intersecting contours.

result = BooleanGlyph(glyph).removeOverlap()

booleanGlyph.name

The name of the sourceGlyph.

booleanGlyph.unicodes

The unicodes of the sourceGlyph.

booleanGlyph.width

The width of the sourceGlyph.

booleanGlyph.lib

The lib of the sourceGlyph.

booleanGlyph.note

The note of the sourceGlyph.

booleanGlyph.contours

List the contours of the glyph.

booleanGlyph.components

List the components of the glyph.

booleanGlyph.anchors

List the anchors of the glyph.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

booleanOperations-0.7.1.zip (25.0 kB view details)

Uploaded Source

Built Distribution

booleanOperations-0.7.1-py2.py3-none-any.whl (20.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file booleanOperations-0.7.1.zip.

File metadata

File hashes

Hashes for booleanOperations-0.7.1.zip
Algorithm Hash digest
SHA256 b69ad09de1c523a00f3885e933faae27d02435872675faceb17adff6951384c3
MD5 15c287368984f3b9374c3c2a22548e7c
BLAKE2b-256 221751605db89ce6d4dac4d6a87c05a41999780669fae3909d3ab32caf4eccca

See more details on using hashes here.

File details

Details for the file booleanOperations-0.7.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for booleanOperations-0.7.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e671ea1f857a373f1f37bc0b0790623edcd885b5f5e7f3a853a61076d85f2a93
MD5 5e419a40de62de8707a90836ecfffa32
BLAKE2b-256 9f6fd0705fdcde22b8320548058e6f0685eb1a55bc1742663f26485d5d841547

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page