Curve.DivideEquidistant Method (Double) |
Calculates 3d points on a curve where the linear distance between the points is equal.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntaxpublic Point3d[] DivideEquidistant(
double distance
)
Public Function DivideEquidistant (
distance As Double
) As Point3d()
Parameters
- distance
- Type: System.Double
The distance between division points.
Return Value
Type:
Point3d[]An array of equidistant points, or null on error.
Remarks
Unlike the other divide methods, which divides a curve based on arc length,
or the distance along the curve between two points, this function divides a curve
based on the linear distance between points.
See Also