NurbsCurveList.Closed operator

説明

カーブリストが閉じられているか(true)そうでないか(false)を示すBoolean値を戻します。

VBScript の例

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