Infohazard.HyperNav 2.1.0
A pathfinding and avoidance solution for volumetric and omnidirectional navigation.
Loading...
Searching...
No Matches
Infohazard.HyperNav.Triangle Struct Reference

Represents the indices of a triangle (three vertices by a face) in an indexed mesh. More...

Public Member Functions

 Triangle (int vertex1, int vertex2, int vertex3)
 Construct a new Triangle with the given indices. More...
 
 Triangle (int3 vertices)
 Construct a new Triangle with the given indices. More...
 
bool Contains (int vertex)
 Returns whether the triangle contains the given vertex. More...
 
int3 ToInt3 ()
 Convert to int3. More...
 
override bool Equals (object obj)
 Compare to another object. More...
 
bool Equals (Triangle other)
 Compare to another Triangle. More...
 
override int GetHashCode ()
 Get integer for use with hash table. More...
 

Static Public Attributes

static readonly Triangle InvalidTriangle = new() { _minVertex = -1, _midVertex = -1, _maxVertex = -1 }
 Invalid Triangle. More...
 

Properties

int Vertex1 [get]
 First vertex index, which is the lower of the three. More...
 
int Vertex2 [get]
 Second vertex index, which is the middle of the three. More...
 
int Vertex3 [get]
 Third vertex index, which is the larger of the three. More...
 
bool IsValid [get]
 Whether the Triangle is valid. More...
 

Detailed Description

Represents the indices of a triangle (three vertices by a face) in an indexed mesh.

The same Triangle will be created regardless of the order in which indices are fed to the constructor.

Constructor & Destructor Documentation

◆ Triangle() [1/2]

Infohazard.HyperNav.Triangle.Triangle ( int  vertex1,
int  vertex2,
int  vertex3 
)

Construct a new Triangle with the given indices.

The order of the indices doesn't matter; the same Triangle is constructed either way. No two of the indices can be the same.

Parameters
vertex1First vertex index.
vertex2Second vertex index.
vertex3Third vertex index.

◆ Triangle() [2/2]

Infohazard.HyperNav.Triangle.Triangle ( int3  vertices)

Construct a new Triangle with the given indices.

Parameters
verticesVertex indices.

Member Function Documentation

◆ Contains()

bool Infohazard.HyperNav.Triangle.Contains ( int  vertex)

Returns whether the triangle contains the given vertex.

Parameters
vertexVertex index to check.
Returns
Whether the triangle contains the vertex.

◆ Equals() [1/2]

override bool Infohazard.HyperNav.Triangle.Equals ( object  obj)

Compare to another object.

Parameters
objObject to compare to.
Returns
Whether the two objects are equal.

◆ Equals() [2/2]

bool Infohazard.HyperNav.Triangle.Equals ( Triangle  other)

Compare to another Triangle.

Parameters
otherTriangle to compare to.
Returns
Whether the two triangles are equal.

◆ GetHashCode()

override int Infohazard.HyperNav.Triangle.GetHashCode ( )

Get integer for use with hash table.

Returns
Integer hash code.

◆ ToInt3()

int3 Infohazard.HyperNav.Triangle.ToInt3 ( )

Convert to int3.

Returns
Triangle as int3.

Member Data Documentation

◆ InvalidTriangle

readonly Triangle Infohazard.HyperNav.Triangle.InvalidTriangle = new() { _minVertex = -1, _midVertex = -1, _maxVertex = -1 }
static

Invalid Triangle.

Property Documentation

◆ IsValid

bool Infohazard.HyperNav.Triangle.IsValid
get

Whether the Triangle is valid.

◆ Vertex1

int Infohazard.HyperNav.Triangle.Vertex1
get

First vertex index, which is the lower of the three.

◆ Vertex2

int Infohazard.HyperNav.Triangle.Vertex2
get

Second vertex index, which is the middle of the three.

◆ Vertex3

int Infohazard.HyperNav.Triangle.Vertex3
get

Third vertex index, which is the larger of the three.


The documentation for this struct was generated from the following file: