Create an edge between tail and head vertex
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public Edge NewEdge(
Vertex tail,
Vertex head
)
Public Function NewEdge (
tail As Vertex,
head As Vertex
) As Edge
public:
Edge^ NewEdge(
Vertex^ tail,
Vertex^ head
)
member NewEdge :
tail : Vertex *
head : Vertex -> Edge
Parameters
- tail
- Type: VelocityGraphVertex
selected tail vertex - head
- Type: VelocityGraphVertex
selected head vertex
Return Value
Type:
Edgea new edge
See Also