このオブジェクトの0Dジオメトリの数(Long)を戻します。
' this example illustrates how to get the number of points
' in the cube polygon mesh.
CreatePrim "Cube", "MeshSurface"
set oSelList = GetValue("SelectionList")
set oItem = oSelList(0)
set oGeometry = oItem.obj
oNumberOf0DGeometries = oGeometry.Nb0D
LogMessage "Geometry_V1[ " & oItem & " ] has : " & oNumberOf0DGeometries & " points" |