Engeom
The engeom
main module has a handful of common entities shared across other parts of the library.
DeviationMode
Bases: Enum
Represents the different methods of calculating deviation between a point and another geometry.
Source code in python/engeom/engeom.pyi
Resample
A common enum to describe different methods of resampling a point based geometry.
Source code in python/engeom/engeom.pyi
Count
MaxSpacing
A resampling method which specifies a maximum permissible spacing between entities. Unlike Spacing
, this will
allow the operation to adjust spacing to remove potential dead space near edges, while also placing a limit on
how far apart entities can be as a result.
Source code in python/engeom/engeom.pyi
Spacing
A resampling method that specifies a fixed spacing between entities. For some types of resampling operations, this may result in dead space near edges. Check with the specific operation documentation for details.