|
oevislib_net
0.14.3.0
|
Functions | |
| Path | oevislib_net.Path.Append (Path inPath, bool inClose) |
| Concatenates two open paths. | |
| static Path | oevislib_net.Path.ConcatenatePaths (Array< Path > inPaths, bool inClose) |
| Concatenates an array of paths. | |
| static Path | oevislib_net.Path.MakeAveragePath (Path inPath1, Path inPath2) |
| Computes a new path averaging each point of two objects with equal size and type. | |
| static Array< Path > | oevislib_net.Path.ConnectAdjacentPaths (Array< Path > inPaths, float inMaxDistance, float inMaxAngle, Optional< float > inMaxDeviation, float inExcessTrim, Optional< float > inEndingLength, PathJoiningMethod inJoiningMethod, PathJoiningAngleMeasure inAngleMeasure, bool inIgnorePathEndsOrder, float inMinPathLength, Optional< Array< Path > > outJoinedPaths) |
| Joins the paths of an input array using the provided parameters. | |
Concatenates two open paths.
| inPath | Path that will be concatenated after the calling object. |
| inClose | Closeness of the new resulting path. |
Concatenates an array of paths.
| inPaths | Input paths. |
| inClose | Closeness that must be applied to the output path. |
|
inlinestatic |
Joins the paths of an input array using the provided parameters.
| inPaths | Input paths. |
| inMaxDistance | Paths with a distance higher than this value cannot be joined. Range: [0, +inf). |
| inMaxAngle | Paths with a relative angle higher than this value will not be joined. Range: [0, 180]. |
| inMaxDeviation | Maximum thickness of a stripe containing both paths being joined. Range: [0, +inf). |
| inExcessTrim | Length that will be removed from both sides of each path. Range: [0, +inf). |
| inEndingLength | Length of the path endings used for computing the relative inclination angle. Range: [0, +inf). |
| inJoiningMethod | Method used to join two paths. |
| inAngleMeasure | Method used to measure the paths' relative angle. |
| inIgnorePathEndsOrder | If false, path endings can only be joined with path beginnings. |
| inMinPathLength | Minimum length of the resulting path. |
| outJoinedPaths | Array containing the original paths that have been joined. |