VertexTypeGetVertices Method (EdgeType, Vertex, Direction) |
Get an enumeration of existing vertices of this type found by following an edge type
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IVertex> GetVertices(
EdgeType etype,
Vertex vertex1,
Direction dir
)
Public Function GetVertices (
etype As EdgeType,
vertex1 As Vertex,
dir As Direction
) As IEnumerable(Of IVertex)
public:
IEnumerable<IVertex^>^ GetVertices(
EdgeType^ etype,
Vertex^ vertex1,
Direction dir
)
member GetVertices :
etype : EdgeType *
vertex1 : Vertex *
dir : Direction -> IEnumerable<IVertex>
Parameters
- etype
- Type: VelocityGraphEdgeType
Edge type to follow - vertex1
- Type: VelocityGraphVertex
Vertex to start from - dir
- Type: VelocityGraph.Frontenac.BlueprintsDirection
Edge direction to follow
Return Value
Type:
IEnumerableIVertexan enumeration of vertices
See Also