CTurtle
|
The Transform class provides a myriad of functions to simply transform points. This class it the backbone of almost all cartesian plane math in CTurtle. An adapted 3x3 matrix of the following link: http://www.opengl-tutorial.org/beginners-tutorials/tutorial-3-matrices/. More...
#include <CTurtle.hpp>
Public Member Functions | |
Transform () | |
Transform (const Transform &other)=default | |
Copy constructor. | |
Transform (const ivec2 &point, float rotation) | |
Point and rotation constructor. Initializes a transform with the specified rotation, a translation matching the specified point. | |
Transform & | identity () |
Sets this transform to an identity. When you concatenate an identity transform onto another object, The resulting point is the same as it would have been pre-concatenation. Such is the point of an identity transform, and is why Transforms are initialized to have this value. | |
bool | operator== (const Transform &other) const |
Returns a boolean indicating if this transform is equivalent in value to the one specified. | |
float | getScaleX () const |
Returns the X scale of this transform. | |
float | getScaleY () const |
Returns the Y scale of this transform. | |
float | getTranslateX () const |
Returns the X translation of this transform. | |
float | getTranslateY () const |
Returns the Y translation of this transform. | |
float | getRotation () const |
Returns rotation of this transform, in radians. | |
Transform & | forward (float distance) |
Transform & | backward (float distance) |
Transform & | setTranslation (int x, int y) |
Sets the translation of this transform. | |
Point | getTranslation () const |
Returns the translation of this transform as a point. | |
Transform & | setTranslationX (int x) |
Sets the X axis translation of this transform. | |
Transform & | setTranslationY (int y) |
Set the Y axis translation of this transform. | |
Transform & | translate (int x, int y) |
Translates this transform. | |
Transform & | rotate (float theta) |
Rotates this transform. | |
Transform & | setRotation (float val) |
Sets the rotation of this transform. | |
Transform & | rotateAround (int x, int y, float theta) |
Rotates this transform around a specified point. | |
Transform & | scale (float sx, float sy) |
Applies a scale transformation to this transform. | |
Transform & | concatenate (const Transform &t) |
Concatenates this Transform with another. | |
Transform | copyConcatenate (const Transform &t) const |
Creates a copy of this transform, concatenates the input, and returns it. | |
Transform | lerp (const Transform &t, float progress) const |
Interpolates between this and the specified transform. Progress is a float in range of 0 to 1. | |
void | assign (const Transform &t) |
Assigns the value of this transform to that of another. | |
Point | transform (Point in, Point *dst=nullptr) const |
Transforms a point according to this transform. | |
template<typename ITER_T > | |
void | transformSet (ITER_T cur, ITER_T end) const |
Transforms a set of points given a begin and end iterator. | |
Point | operator() (Point in) const |
Operator overload to transform a single point. | |
Protected Types | |
typedef std::array< float, 9 > | mat_t |
Protected Member Functions | |
float & | at (int row, int col) |
Returns a reference to the float the specified coordinate. | |
float | at (int row, int col) const |
Returns a copy of the float at the specified coordinate. | |
Protected Attributes | |
mat_t | value |
float | rotation = 0 |
The Transform class provides a myriad of functions to simply transform points. This class it the backbone of almost all cartesian plane math in CTurtle. An adapted 3x3 matrix of the following link: http://www.opengl-tutorial.org/beginners-tutorials/tutorial-3-matrices/.
|
protected |
The underlying matrix type. It's defined simply as an array of 9 floats. Retrieved from coordinate pairs using (x*3+y) as indices.
|
inline |
Constructs an empty transform. Initializes, by default, as an identity transform.
|
default |
Copy constructor.
other | The other transform from which to derive value. |
|
inline |
Point and rotation constructor. Initializes a transform with the specified rotation, a translation matching the specified point.
point | The translation of this newly constructed transform. |
rotation | The rotation of this newly constructed transform. |
|
inline |
Assigns the value of this transform to that of another.
t | The other transform to derive value from. |
|
inlineprotected |
Returns a reference to the float the specified coordinate.
row | The specified row from which to get a component. |
col | The specified column from which to get a component. |
|
inlineprotected |
Returns a copy of the float at the specified coordinate.
row | The specified row from which to get a component. |
col | The specified column from which to get a component. |
Creates a copy of this transform, concatenates the input, and returns it.
t | The input to concatenate onto the copy of this transform. |
|
inline |
Moves this transform "forward" according to its rotation.
|
inline |
Returns rotation of this transform, in radians.
|
inline |
Returns the X scale of this transform.
|
inline |
Returns the Y scale of this transform.
|
inline |
Returns the X translation of this transform.
|
inline |
Returns the Y translation of this transform.
|
inline |
Returns the translation of this transform as a point.
|
inline |
Sets this transform to an identity. When you concatenate an identity transform onto another object, The resulting point is the same as it would have been pre-concatenation. Such is the point of an identity transform, and is why Transforms are initialized to have this value.
Interpolates between this and the specified transform. Progress is a float in range of 0 to 1.
t | The destination transform. |
progress | A progress float in range of 0 to 1. |
Operator overload to transform a single point.
in | The point to transform. |
|
inline |
Rotates this transform.
theta | The angle at which to rotate, in radians |
|
inline |
Rotates this transform around a specified point.
x | The X coordinate to rotate around. |
y | The Y coordinate to rotate around. |
theta | The angle at which to rotate, in radians |
|
inline |
Applies a scale transformation to this transform.
sx | The X axis scale factor. |
sy | The Y axis scale factor. |
|
inline |
Sets the rotation of this transform.
val | The angle at which to rotate, in radians. |
|
inline |
Sets the translation of this transform.
x | The number of units, or pixels, to transform on the X axis. |
y | The number of units, or pixels, to transform on the Y axis. |
|
inline |
Sets the X axis translation of this transform.
x | The number of units, or pixels, to transform on the X axis. |
|
inline |
Set the Y axis translation of this transform.
y | The number of units, or pixels, to transform on the Y axis. |
Transforms a point according to this transform.
in | The input point. |
dst | The destination pointer to store the value. Can be same as input.. |
|
inline |
Transforms a set of points given a begin and end iterator.
cur | The beginning iterator of a set. |
end | The ending iterator of a set. |
|
inline |
Translates this transform.
x | The number of units, or pixels, to transform on the X axis. |
y | The number of units, or pixels, to transform on the Y axis. |
|
protected |
The rotation of this transform, in radians.
|
protected |
The value of this transform.