TDME2 1.9.121
TextureCoordinate.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
7#include <tdme/math/Math.h>
8
9using std::array;
10
12
13/**
14 * Class representing texture UV coordinates data
15 * @author andreas.drewke
16 * @version $Id$
17 */
19{
20private:
21 array<float, 2> data;
22public:
23 /**
24 * Public constructor
25 */
27
28 /**
29 * Public constructor
30 * @param textureCoordinate texture coordinate
31 */
32 TextureCoordinate(const TextureCoordinate& textureCoordinate);
33
34 /**
35 * Public constructor
36 * @param uv texture coordinate
37 */
38 TextureCoordinate(const array<float, 2>& uv);
39
40 /**
41 * Public constructor
42 * @param u u
43 * @param v v
44 */
45 TextureCoordinate(float u, float v);
46
47 /**
48 * @return U
49 */
50 inline float getU() const {
51 return data[0];
52 }
53
54 /**
55 * @return V
56 */
57 inline float getV() const {
58 return data[1];
59 }
60
61 /**
62 * Set texture coordinate
63 * @param textureCoordinate texture coordinate
64 */
65 TextureCoordinate& set(const TextureCoordinate& textureCoordinate);
66
67 /**
68 * Set texture coordinate
69 * @param uv texture coordinate
70 */
71 TextureCoordinate& set(const array<float, 2>& uv);
72
73 /**
74 * Set texture coordinate
75 * @param u u
76 * @param v v
77 */
78 TextureCoordinate& set(float u, float v);
79
80 /**
81 * @return texture data as array
82 */
83 inline array<float, 2>& getArray() const {
84 return (array<float, 2>&)data;
85 }
86
87 /**
88 * Clones the texture coordinate
89 * @return new texture coordinate
90 */
92
93 /**
94 * Compares this texture coordinate with given texture coordinate
95 * @return equality
96 */
97 inline bool equals(const TextureCoordinate& textureCoordinate) const {
98 return
99 this == &textureCoordinate ||
100 (
101 Math::abs(data[0] - textureCoordinate.data[0]) < Math::EPSILON &&
102 Math::abs(data[1] - textureCoordinate.data[1]) < Math::EPSILON
103 );
104 }
105
106};
Class representing texture UV coordinates data.
bool equals(const TextureCoordinate &textureCoordinate) const
Compares this texture coordinate with given texture coordinate.
TextureCoordinate & set(const TextureCoordinate &textureCoordinate)
Set texture coordinate.
array< float, 2 > & getArray() const
TextureCoordinate clone()
Clones the texture coordinate.
Standard math functions.
Definition: Math.h:21