Returns the number (Long) of 0D Geometry of this object
' 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" |