TDME2 1.9.121
|
Class representing texture UV coordinates data. More...
#include <tdme/engine/model/TextureCoordinate.h>
Public Member Functions | |
TextureCoordinate () | |
Public constructor. More... | |
TextureCoordinate (const TextureCoordinate &textureCoordinate) | |
Public constructor. More... | |
TextureCoordinate (const array< float, 2 > &uv) | |
Public constructor. More... | |
TextureCoordinate (float u, float v) | |
Public constructor. More... | |
float | getU () const |
float | getV () const |
TextureCoordinate & | set (const TextureCoordinate &textureCoordinate) |
Set texture coordinate. More... | |
TextureCoordinate & | set (const array< float, 2 > &uv) |
Set texture coordinate. More... | |
TextureCoordinate & | set (float u, float v) |
Set texture coordinate. More... | |
array< float, 2 > & | getArray () const |
TextureCoordinate | clone () |
Clones the texture coordinate. More... | |
bool | equals (const TextureCoordinate &textureCoordinate) const |
Compares this texture coordinate with given texture coordinate. More... | |
Private Attributes | |
array< float, 2 > | data |
Class representing texture UV coordinates data.
Definition at line 18 of file TextureCoordinate.h.
Public constructor.
Definition at line 10 of file TextureCoordinate.cpp.
TextureCoordinate | ( | const TextureCoordinate & | textureCoordinate | ) |
Public constructor.
textureCoordinate | texture coordinate |
Definition at line 15 of file TextureCoordinate.cpp.
TextureCoordinate | ( | const array< float, 2 > & | uv | ) |
Public constructor.
uv | texture coordinate |
Definition at line 20 of file TextureCoordinate.cpp.
TextureCoordinate | ( | float | u, |
float | v | ||
) |
TextureCoordinate clone | ( | ) |
Clones the texture coordinate.
Definition at line 47 of file TextureCoordinate.cpp.
|
inline |
Compares this texture coordinate with given texture coordinate.
Definition at line 97 of file TextureCoordinate.h.
|
inline |
Definition at line 83 of file TextureCoordinate.h.
|
inline |
Definition at line 50 of file TextureCoordinate.h.
|
inline |
Definition at line 57 of file TextureCoordinate.h.
TextureCoordinate & set | ( | const array< float, 2 > & | uv | ) |
Set texture coordinate.
uv | texture coordinate |
Definition at line 36 of file TextureCoordinate.cpp.
TextureCoordinate & set | ( | const TextureCoordinate & | textureCoordinate | ) |
Set texture coordinate.
textureCoordinate | texture coordinate |
Definition at line 31 of file TextureCoordinate.cpp.
TextureCoordinate & set | ( | float | u, |
float | v | ||
) |
|
private |
Definition at line 21 of file TextureCoordinate.h.