Click or drag to resize

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
Syntax
public Point3d[] DivideEquidistant(
	double distance
)

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