LineGeometry.SmoothCubicBezierSpline Method
Returns an approximation of a cubic Bezier spline generated from the points in the LineGeometry.
SmoothCubicBezierSpline(System.Boolean passThroughPoints, System.Double maxAngle, System.Double minSegmentLength)
Returns an approximation of a cubic Bezier spline generated from the points in the LineGeometry.Syntax
public LineGeometry SmoothCubicBezierSpline (
System.Boolean passThroughPoints,
System.Double maxAngle,
System.Double minSegmentLength
)
Parameters
Determines whether the generated line will pass through all points in the original line or not.
The maximum angle, in radians, between two segments in the result.
The minimum length of the segments in the result. Unit: same as the coordinates of the line geometry.
Return Value
A line geometry that is the approximation of a cubic Bezier spline.
Remarks
If passThroughPoints is False the first segment of the curve is specified by points 0 through 3, the second by point 3 through 6 and so on. If the last segment is incomplete the remaining points are discarded. This means that the generated curve will pass through points 0, 3, 6 etc. but not through any other point.
The maxAngle value can be exceeded to keep the length of each segment greater than or equal to minSegmentLength.
Platforms
Windows, Linux, Android