![]() |
Infohazard.HyperNav 2.1.0
A pathfinding and avoidance solution for volumetric and omnidirectional navigation.
|
Represents the indices of an edge (two connected vertices) in an indexed mesh. More...
Public Member Functions | |
Edge (int vertex1, int vertex2) | |
Construct a new Edge with the given indices. More... | |
Edge (int2 vertices) | |
Construct a new Edge with the given indices. More... | |
int2 | ToInt2 () |
Convert to int2. More... | |
override bool | Equals (object obj) |
Compare to another object. More... | |
bool | Equals (Edge other) |
Compare to another Edge. More... | |
override int | GetHashCode () |
Get integer for use with hash table. More... | |
Static Public Member Functions | |
static bool | operator== (Edge a, Edge b) |
Equality operator. More... | |
static bool | operator!= (Edge a, Edge b) |
Inequality operator. More... | |
Static Public Attributes | |
static readonly Edge | InvalidEdge = new() { _minVertex = -1, _maxVertex = -1 } |
Invalid Edge. More... | |
Properties | |
int | Vertex1 [get] |
First vertex index, which is the lower of the two. More... | |
int | Vertex2 [get] |
Second vertex index, which is the higher of the two. More... | |
bool | IsValid [get] |
Whether the Edge is valid. More... | |
Represents the indices of an edge (two connected vertices) in an indexed mesh.
The same Edge will be created regardless of the order in which indices are fed to the constructor.
Infohazard.HyperNav.Edge.Edge | ( | int | vertex1, |
int | vertex2 | ||
) |
Infohazard.HyperNav.Edge.Edge | ( | int2 | vertices | ) |
Construct a new Edge with the given indices.
vertices | Vertex indices. |
bool Infohazard.HyperNav.Edge.Equals | ( | Edge | other | ) |
override bool Infohazard.HyperNav.Edge.Equals | ( | object | obj | ) |
Compare to another object.
obj | Object to compare to. |
override int Infohazard.HyperNav.Edge.GetHashCode | ( | ) |
Get integer for use with hash table.
Inequality operator.
a | First edge to compare. |
b | Second edge to compare. |
Equality operator.
a | First edge to compare. |
b | Second edge to compare. |
int2 Infohazard.HyperNav.Edge.ToInt2 | ( | ) |
Convert to int2.
|
static |
Invalid Edge.
|
get |
Whether the Edge is valid.
|
get |
First vertex index, which is the lower of the two.
|
get |
Second vertex index, which is the higher of the two.