Vertex.Nodes operator

説明

この頂点に隣接する各 PolygonNode オブジェクトを含む PolygonNodeCollection を戻します。

C#構文

// get accessor

PolygonNodeCollection rtn = Vertex.Nodes;

VBScript の例

'Retreive the PolygonNode associated with a Vertex

set oObject = ActiveSceneRoot.AddGeometry("Cube","MeshSurface")

set oPolygonMesh = oObject.ActivePrimitive.Geometry

set oVertex = oPolygonMesh.Vertices(0)

set oPolygonNodes = oVertex.Nodes