Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 875 Bytes

File metadata and controls

46 lines (38 loc) · 875 Bytes

CreateOffsetNurbsObjectHandle

Description

Returns a handle to a NURBS object that is offset from the given NURBS object h by the offset distance.

FUNCTION CreateOffsetNurbsObjectHandle(
				h              : HANDLE;
				offsetDistance : REAL): HANDLE;
def vs.CreateOffsetNurbsObjectHandle(h, offsetDistance):
    return HANDLE

Parameters

Name Type Description
h HANDLE Handle to object.
offsetDistance REAL Offset distance. Positive offsets outwards.

Examples

VectorScript

PROCEDURE Example;
VAR
h :handle;
BEGIN
CallTool(-204);
h := FSActLayer;
h := ConvertToNURBS(h, false);
h := CreateOffsetNurbsObjectHandle(h, 1);
END;
RUN(Example);

Python

Version

Availability: from VectorWorks10.0

Category