PolygonFace.Vertices
 
 
 

PolygonFace.Vertices operator

Description

Returns a VertexCollection containing each Vertex object in the PolygonFace.

C# Syntax

// get accessor
VertexCollection rtn = PolygonFace.Vertices;

Examples

VBScript Example

set oObject = ActiveSceneRoot.AddGeometry("Cube","MeshSurface")
set oPolygonMesh = oObject.ActivePrimitive.Geometry
set oPolygonFace = oPolygonMesh.Polygons(0)
set oVertices = oPolygonFace.Vertices