LineGeometry.ParallelLine Method
Returns a LineGeometry that is parallel to this LineGeometry.
ParallelLine(System.Double distance, System.Double minSegmentLength, LineJoin lineJoin)
Returns a LineGeometry that is parallel to this LineGeometry.Syntax
public LineGeometry ParallelLine (
System.Double distance,
System.Double minSegmentLength,
LineJoin lineJoin
)
Parameters
The distance of the new line from the current line. A positive value will return a parallel line the is offset to the left of the current line and a negative value will return a line offset to the right of the current line. Unit: same as the coordinates of the line geometry.
Segments shorter than this value will be removed to speed up calculations. Zero will use all segments to calculate the result. Unit: same as the coordinates of the line geometry.
Determines how the new parallel line segments will be joined together.
Return Value
A line that is parallel to the current line or a null reference if a parallel line could not be generated.
Remarks
This method can fail and return a null reference in some cases, for example when the line is a small closed loop.
This method operates on 2D geometries and all z-coordinate values are ignored.
Platforms
Windows, Linux, Android