Vertex.Nodes operator

Description

Returns a PolygonNodeCollection containing each PolygonNode object adjacent to this vertex.

C# Syntax

// get accessor

PolygonNodeCollection rtn = Vertex.Nodes;

Examples

VBScript Example

'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