TDME2 1.9.121
Matrix4x4Negative.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
6#include <tdme/math/Vector3.h>
7
10
11/**
12 * Simple class to determine if a transform is negative
13 * @author Andreas Drewke
14 * @version $Id$
15 */
17{
18private:
22
23public:
24 /**
25 * Public constructor
26 */
28 }
29
30 /**
31 * Check if matrix is negative
32 * @param matrix matrix
33 * @return negative
34 */
35 inline bool isNegative(Matrix4x4& matrix) {
36 // check if negative scale and rotation
37 auto& transformationsMatrixData = matrix.getArray();
38 // copy into x,y,z axes
39 xAxis.set(transformationsMatrixData[0], transformationsMatrixData[1], transformationsMatrixData[2]);
40 yAxis.set(transformationsMatrixData[4], transformationsMatrixData[5], transformationsMatrixData[6]);
41 zAxis.set(transformationsMatrixData[8], transformationsMatrixData[9], transformationsMatrixData[10]);
42 // check if inverted/negative transformation
44 }
45
46};
Simple class to determine if a transform is negative.
Matrix4x4Negative()
Public constructor.
bool isNegative(Matrix4x4 &matrix)
Check if matrix is negative.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
array< float, 16 > & getArray() const
Returns array data.
Definition: Matrix4x4.h:616
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
static float computeDotProduct(const Vector3 &v1, const Vector3 &v2)
Compute the dot product of vector v1 and v2.
Definition: Vector3.h:195
static Vector3 computeCrossProduct(const Vector3 &v1, const Vector3 &v2)
Compute the cross product of vector v1 and v2.
Definition: Vector3.h:181