VertexTypeGetEdges Method (Vertex, Direction) |
Get all edges found from a given
Vertex
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public IEnumerable<IEdge> GetEdges(
Vertex vertex1,
Direction dir
)
Public Function GetEdges (
vertex1 As Vertex,
dir As Direction
) As IEnumerable(Of IEdge)
public:
IEnumerable<IEdge^>^ GetEdges(
Vertex^ vertex1,
Direction dir
)
member GetEdges :
vertex1 : Vertex *
dir : Direction -> IEnumerable<IEdge>
Parameters
- vertex1
- Type: VelocityGraphVertex
A Vertex id - dir
- Type: VelocityGraph.Frontenac.BlueprintsDirection
follow edges in this direction
Return Value
Type:
IEnumerableIEdgean enumeration of edges
See Also