Skip to main content

Boolean operations on paths.

Project description

Build Status PyPI Python Versions

BooleanOperations

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

You can download the latest version from PyPI:

https://pypi.org/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.10.0.tar.gz (167.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

booleanoperations-0.10.0-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file booleanoperations-0.10.0.tar.gz.

File metadata

  • Download URL: booleanoperations-0.10.0.tar.gz
  • Upload date:
  • Size: 167.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for booleanoperations-0.10.0.tar.gz
Algorithm Hash digest
SHA256 6d719f560d2a1dd676c812b844ecceb693c96791c76579089ab7d0f5db5cedbe
MD5 fcfe98676ad174b23da934491dfcc4ca
BLAKE2b-256 b46e63c0dba783d3811cdfe675883cafa4dec03fdd9d77b5743c58da01890dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for booleanoperations-0.10.0.tar.gz:

Publisher: ci.yml on typemytype/booleanOperations

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file booleanoperations-0.10.0-py3-none-any.whl.

File metadata

File hashes

Hashes for booleanoperations-0.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7d2537ec0c3763214bcfa2981a2a70995eb7bec2f76c9fb9eacac30545ba5808
MD5 6371ad36103b361f1d5611e91e34b79c
BLAKE2b-256 52509293f0e97f0029773c4b85c5058417aff8a19266f34a140c014b5e1bd887

See more details on using hashes here.

Provenance

The following attestation bundles were made for booleanoperations-0.10.0-py3-none-any.whl:

Publisher: ci.yml on typemytype/booleanOperations

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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