Edge.Vertices operator

Description

Returns a VertexCollection containing each Vertex object at the ends of this edge.

C# Syntax

// get accessor

VertexCollection rtn = Edge.Vertices;

Examples

VBScript Example

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

set oPolygonMesh = oObject.ActivePrimitive.Geometry

set oEdge = oPolygonMesh.Edges(2)

set oVertices = oEdge.Vertices