You are here: Start » FIL.NET » FIS.SegmentPath Method
FIS.SegmentPath Method
Splits a path into parts that can be approximated as segments or arcs.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void SegmentPath ( FilNet.Path inPath, float inSmoothingStdDev, float inMaxDeviation, FilNet.PathSegmentationMode inSegmentationMode, IList<FilNet.Path> outStraight, IList<FilNet.Path> outArciform, IList<FilNet.Segment2D> outSegments, IList<FilNet.Arc2D> outArcs )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPath | FilNet.Path | Path to be segmented. | ||
![]() | inSmoothingStdDev | float | <0.0f, INF> | Standard deviation used for initial gaussian smoothing of the segmented path. | |
![]() | inMaxDeviation | float | <0.0f, INF> | 0.5f | Maximal distance between any point of a classified segment to the abstract shape. Default value: 0.5f. |
![]() | inSegmentationMode | FilNet.PathSegmentationMode | Whether to use arcs for segmentation. | ||
![]() | outStraight | System.Collections.Generic.IList<FilNet.Path> | Parts classified as straight segments. | ||
![]() | outArciform | System.Collections.Generic.IList<FilNet.Path> | Parts classified as arciform segments. | ||
![]() | outSegments | System.Collections.Generic.IList<FilNet.Segment2D> | Segments corresponding to sections of path from outStraight. | ||
![]() | outArcs | System.Collections.Generic.IList<FilNet.Arc2D> | Arcs corresponding to sections of path from outArciform. |