Struct GraphTopology.NeighbourDetails
Describes a single neighbour of a node. (also called a half-edge in some literature).
Namespace: DeBroglie.Topo
Assembly: DeBroglie.dll
Syntax
public struct GraphTopology.NeighbourDetails
Properties
| Edit this page View SourceEdgeLabel
The edge label of this edge
Declaration
public EdgeLabel EdgeLabel { get; set; }
Property Value
Type | Description |
---|---|
EdgeLabel |
Index
Where this edge leads to. Set to -1 to indicate no neighbour.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
int |
InverseDirection
The direction to move from Index which will return back along this edge.
Declaration
public Direction InverseDirection { get; set; }
Property Value
Type | Description |
---|---|
Direction |