Method |
Description |
---|
AcGeCurve3d::getSamplePoints (double, double, double, AcGePoint3dArray&, AcGeDoubleArray&, bool) |
Returns a list of points on the curve between fromParam and toParam. The line segment between any two consecutive points returned in pointArray will not deviate by more than approxEps from the curve. |
AcGeCurve3d::getSamplePoints (int, AcGePoint3dArray&, AcGeDoubleArray&) |
Returns the specified number of points on the curve as well as sample points. The points are equally spaced by parameter value. So if the interval of the curve [0,1] and numSample is 5, the parameter values of the returned points are 0, 0.25, 0.5, 0.75, and 1. |
AcGeCurve3d::getSamplePoints (int, AcGePoint3dArray&) |
Returns the specified number of points on the curve. The points are equally spaced by parameter value. So if the interval of the curve [0,1] and numSample is 5, the parameter values of the returned points are 0, 0.25, 0.5, 0.75, and 1. |