Definition of a quad face with four vertex indices.
More...
#include <QuadFace.h>
|
| QuadFace () |
| Creates a new quad face object with undefined indices.
|
|
| QuadFace (const VertexIndex startIndex) |
| Creates a new quad face object with successive indices.
|
|
| QuadFace (const VertexIndex first, const VertexIndex second, const VertexIndex third, const VertexIndex fourth) |
| Creates a new quad face object with four given indices.
|
|
| QuadFace (const VertexIndex *arrayValue) |
| Creates a new quad face object by an array of at least four indices.
|
|
VertexIndex | index (const unsigned int index) const |
| Returns a specific vertex index specified by it's index inside the face.
|
|
VertexIndex & | index (const unsigned int index) |
| Returns a specific vertex index specified by it's index inside the face.
|
|
VertexIndex | operator[] (const unsigned int index) const |
| Returns a specific vertex index specified by it's index inside the face.
|
|
VertexIndex & | operator[] (const unsigned int index) |
| Returns a specific vertex index specified by it's index inside the face.
|
|
const VertexIndex * | operator() () const |
| Returns the pointer to the first element of the vertex indices.
|
|
VertexIndex * | operator() () |
| Returns the pointer to the first element of the vertex indices.
|
|
Definition of a quad face with four vertex indices.
◆ QuadFace() [1/4]
Ocean::Rendering::QuadFace::QuadFace |
( |
| ) |
|
|
inline |
Creates a new quad face object with undefined indices.
◆ QuadFace() [2/4]
Ocean::Rendering::QuadFace::QuadFace |
( |
const VertexIndex |
startIndex | ) |
|
|
inlineexplicit |
Creates a new quad face object with successive indices.
The first index is given, the following indices will be set to successive values.
- Parameters
-
startIndex | Index of the first vertex |
◆ QuadFace() [3/4]
Creates a new quad face object with four given indices.
- Parameters
-
first | First vertex index |
second | Second vertex index |
third | Third vertex index |
fourth | Fourth vertex index |
◆ QuadFace() [4/4]
Ocean::Rendering::QuadFace::QuadFace |
( |
const VertexIndex * |
arrayValue | ) |
|
|
inlineexplicit |
Creates a new quad face object by an array of at least four indices.
- Parameters
-
arrayValue | Array with at least four vertex indices |
◆ index() [1/2]
VertexIndex & Ocean::Rendering::QuadFace::index |
( |
const unsigned int |
index | ) |
|
|
inline |
Returns a specific vertex index specified by it's index inside the face.
Beware: No range check will be done!
- Parameters
-
index | Index of the vertex index with range [0, 3] |
- Returns
- Specified vertex index
◆ index() [2/2]
VertexIndex Ocean::Rendering::QuadFace::index |
( |
const unsigned int |
index | ) |
const |
|
inline |
Returns a specific vertex index specified by it's index inside the face.
Beware: No range check will be done!
- Parameters
-
index | Index of the vertex index with range [0, 3] |
- Returns
- Specified vertex index
◆ operator()() [1/2]
VertexIndex * Ocean::Rendering::QuadFace::operator() |
( |
| ) |
|
|
inline |
Returns the pointer to the first element of the vertex indices.
- Returns
- Array with vertex indices
◆ operator()() [2/2]
const VertexIndex * Ocean::Rendering::QuadFace::operator() |
( |
| ) |
const |
|
inline |
Returns the pointer to the first element of the vertex indices.
- Returns
- Array with vertex indices
◆ operator[]() [1/2]
VertexIndex & Ocean::Rendering::QuadFace::operator[] |
( |
const unsigned int |
index | ) |
|
|
inline |
Returns a specific vertex index specified by it's index inside the face.
Beware: No range check will be done!
- Parameters
-
index | Index of the vertex index with range [0, 3] |
- Returns
- Specified vertex index
◆ operator[]() [2/2]
VertexIndex Ocean::Rendering::QuadFace::operator[] |
( |
const unsigned int |
index | ) |
const |
|
inline |
Returns a specific vertex index specified by it's index inside the face.
Beware: No range check will be done!
- Parameters
-
index | Index of the vertex index with range [0, 3] |
- Returns
- Specified vertex index
◆ faceIndices
The documentation for this class was generated from the following file: