Geometry_V1

Object Hierarchy

導入

v1.0

詳細

このオブジェクトは廃止されたオブジェクトであり、Geometryオブジェクトに置き換えられています。このジオメトリオブジェクトは、シーン内の任意の 3d オブジェクトのジオメトリ(ポリゴンメッシュやNURBS サーフェイスなど)にアクセスするプロパティを提供します。ポリゴンメッシュジオメトリには、ポイント、エッジ、およびポリゴンがあり、それぞれGeometry0Dオブジェクト、Geometry1Dオブジェクト、およびGeometry2Dオブジェクトで表されます。PolygonNodes はGeometry2Dの0D2Dプロパティからアクセスされます。Nurbs Surfaceジオメトリはそのコントロールポイントを持ち、サーフェイスはGeometry0DオブジェクトおよびGeometry2Dオブジェクトで表されます。

プロパティ

Geometry0D Geometry1D Geometry2D Nb0D
Nb1D Nb2D    
       

VBScript の例

' this illustrates how to create a cube and access the automation object
' for the geometry from the selection.
CreatePrim "Cube", "MeshSurface" 
set oSelList = GetValue("SelectionList") 
set oItem = oSelList(0) 
set oGeometry_V1 = oItem.obj
logmessage oItem & " has: " & _
        oGeometry_V1.Nb0D & " points, " & _
        oGeometry_V1.Nb1D & " edges and " & _
        oGeometry_V1.Nb2D & " polygons"

関連項目

Geometry0D Geometry1D Geometry2D Cluster_V1 ClusterProperty_V1