Constructs polyline which approximates the input curve. Each vertex of the polyline lies on the input curve. The maximum distance from any point on any segment of the polyline to the input curve does not exceed eps.
Public Sub New( curve As Curve3d, fromParameter As double, toParameter As double, eps As double )
public AugmentedPolylineCurve3d( Curve3d curve, double fromParameter, double toParameter, double eps );
Parameters |
Description |
Curve3d curve |
Input any 3D curve |
double fromParameter |
Input parameter value on curve |
double toParameter |
Input parameter value on curve (must be larger than fromParam) |
double eps |
Input approximation distance |
Comments? |