Extends a curve by a given distance at the start or the end. The extension can either be linear or can match the curvature of the existing end.
FUNCTION ExtendNurbsCurve(
curveHandle : HANDLE;
distance : REAL;
bStart : BOOLEAN;
bLinear : BOOLEAN): HANDLE;def vs.ExtendNurbsCurve(curveHandle, distance, bStart, bLinear):
return HANDLE| Name | Type | Description |
|---|---|---|
| curveHandle | HANDLE | Handle to a NURBS curve |
| distance | REAL | Distance to extend the curve |
| bStart | BOOLEAN | True to extend the curve at the beginning, false to extend it at the end. |
| bLinear | BOOLEAN | True for linear, false to match curvature of existing end. |
Availability: from VectorWorks10.0