NurbsCurveList.Closed
 
 
 

NurbsCurveList.Closed operator

Description

Returns a Boolean value indicating whether the curve list is closed (true) or not.

C# Syntax

// get accessor
Boolean rtn = NurbsCurveList.Closed;

Examples

VBScript Example

set oObject = Application.ActiveProject.ActiveScene.Root.AddGeometry("Arc","NurbsCurve")
set oNurbsCurveList = oObject.ActivePrimitive.Geometry
if oNurbsCurveList.Closed then
logmessage "NURBS curves closed"
end if