mxwcore-legion/dep/g3dlite/include/G3D/Matrix4.h

349 lines
9.7 KiB
C
Raw Normal View History

2023-11-05 15:26:19 -05:00
/**
@file Matrix4.h
4x4 matrix class
@maintainer Morgan McGuire, http://graphics.cs.williams.edu
\created 2003-10-02
\edited 2012-12-25
*/
#ifndef G3D_Matrix4_h
#define G3D_Matrix4_h
#ifdef _MSC_VER
// Disable conditional expression is constant, which occurs incorrectly on inlined functions
# pragma warning (push)
# pragma warning( disable : 4127 )
#endif
#include "G3D/platform.h"
#include "G3D/debugAssert.h"
#include "G3D/Matrix3.h"
#include "G3D/Vector3.h"
namespace G3D {
class Any;
class Matrix2;
/**
A 4x4 matrix. Do not subclass. Data is initialized to 0 when default constructed.
\sa G3D::CoordinateFrame, G3D::Matrix3, G3D::Quat
*/
class Matrix4 {
private:
float elt[4][4];
/**
Computes the determinant of the 3x3 matrix that lacks excludeRow
and excludeCol.
*/
float subDeterminant(int excludeRow, int excludeCol) const;
// Hidden operators
bool operator<(const Matrix4&) const;
bool operator>(const Matrix4&) const;
bool operator<=(const Matrix4&) const;
bool operator>=(const Matrix4&) const;
public:
/** Must be in one of the following forms:
- Matrix4(#, #, # .... #)
- Matrix4::scale(#)
- Matrix4::scale(#, #, #)
- Matrix4::translation(#, #, #)
- Matrix4::identity()
- Matrix4::rollDegrees(#)
- Matrix4::pitchDegrees(#)
- Matrix4::yawDegrees(#)
*/
explicit Matrix4(const Any& any);
Any toAny() const;
Matrix4(
float r1c1, float r1c2, float r1c3, float r1c4,
float r2c1, float r2c2, float r2c3, float r2c4,
float r3c1, float r3c2, float r3c3, float r3c4,
float r4c1, float r4c2, float r4c3, float r4c4);
/**
init should be <B>row major</B>.
*/
Matrix4(const float* init);
/**
a is the upper left 3x3 submatrix and b is the upper right 3x1 submatrix. The last row of the created matrix is (0,0,0,1).
*/
Matrix4(const class Matrix3& upper3x3, const class Vector3& lastCol = Vector3::zero());
Matrix4(const class CoordinateFrame& c);
Matrix4(const double* init);
/** Matrix4::zero() */
Matrix4();
static Matrix4 diagonal(float e00, float e11, float e22, float e33) {
return Matrix4(e00, 0, 0, 0,
0, e11, 0, 0,
0, 0, e22, 0,
0, 0, 0, e33);
}
/** Produces an RT transformation that nearly matches this Matrix4.
Because a Matrix4 may not be precisely a rotation and translation,
this may introduce error. */
class CoordinateFrame approxCoordinateFrame() const;
// Special values.
// Intentionally not inlined: see Matrix3::identity() for details.
static const Matrix4& identity();
static const Matrix4& zero();
/** If this is a perspective projection matrix created by
Matrix4::perspectiveProjection, extract its parameters.
Uses double precision because the operations involved in
projection involve divisions that can significantly impact
precision.
*/
void getPerspectiveProjectionParameters
(double& left,
double& right,
double& bottom,
double& top,
double& nearval,
double& farval,
float updirection = -1.0f) const;
inline float* operator[](int r) {
debugAssert(r >= 0);
debugAssert(r < 4);
return (float*)&elt[r];
}
inline const float* operator[](int r) const {
debugAssert(r >= 0);
debugAssert(r < 4);
return (const float*)&elt[r];
}
/** Returns a row-major pointer. */
inline operator float* () {
return (float*)&elt[0][0];
}
inline operator const float* () const {
return (const float*)&elt[0][0];
}
Matrix4 operator*(const Matrix4& other) const;
Matrix4 operator+(const Matrix4& other) const {
Matrix4 result;
for (int r = 0; r < 4; ++r) {
for (int c = 0; c < 4; ++c) {
result.elt[r][c] = elt[r][c] + other.elt[r][c];
}
}
return result;
}
class Matrix3 upper3x3() const;
class Matrix2 upper2x2() const;
/** Homogeneous multiplication. Let k = M * [v w]^T. result = k.xyz() / k.w */
class Vector3 homoMul(const class Vector3& v, float w) const;
/**
Constructs an orthogonal projection matrix from the given parameters.
Near and far are the <b>NEGATIVE</b> of the near and far plane Z values
(to follow OpenGL conventions).
\param upDirection Use -1.0 for 2D Y increasing downwards (the G3D 8.x default convention),
1.0 for 2D Y increasing upwards (the G3D 7.x default and OpenGL convention)
*/
static Matrix4 orthogonalProjection(
float left,
float right,
float bottom,
float top,
float nearval,
float farval,
float upDirection = -1.0f);
/** \param upDirection Use -1.0 for 2D Y increasing downwards (the G3D 8.x default convention),
1.0 for 2D Y increasing upwards (the G3D 7.x default and OpenGL convention)
*/
static Matrix4 orthogonalProjection(
const class Rect2D& rect,
float nearval,
float farval,
float upDirection = -1.0f);
/** \param upDirection Use -1.0 for 2D Y increasing downwards (the G3D 8.x default convention),
1.0 for 2D Y increasing upwards (the G3D 7.x default and OpenGL convention)
Uses double precision because the operations involved in
projection involve divisions that can significantly impact
precision. */
static Matrix4 perspectiveProjection(
double left,
double right,
double bottom,
double top,
double nearval,
double farval,
float upDirection = -1.0f);
void setRow(int r, const class Vector4& v);
void setColumn(int c, const Vector4& v);
const Vector4& row(int r) const;
Vector4 column(int c) const;
Matrix4 operator*(const float s) const;
Vector4 operator*(const Vector4& vector) const;
Matrix4 transpose() const;
bool operator!=(const Matrix4& other) const;
bool operator==(const Matrix4& other) const;
float determinant() const;
Matrix4 inverse() const;
/**
Transpose of the cofactor matrix (used in computing the inverse).
Note: This is in fact only one type of adjoint. More generally,
an adjoint of a matrix is any mapping of a matrix which possesses
certain properties. This returns the so-called adjugate
or classical adjoint.
*/
Matrix4 adjoint() const;
Matrix4 cofactor() const;
/** Serializes row-major */
void serialize(class BinaryOutput& b) const;
void deserialize(class BinaryInput& b);
std::string toString() const;
/** 3D scale matrix */
inline static Matrix4 scale(const Vector3& v) {
return Matrix4(v.x, 0, 0, 0,
0, v.y, 0, 0,
0, 0, v.z, 0,
0, 0, 0, 1);
}
/** 3D scale matrix */
inline static Matrix4 scale(float x, float y, float z) {
return scale(Vector3(x, y, z));
}
/** 3D scale matrix */
inline static Matrix4 scale(float s) {
return scale(s,s,s);
}
/** 3D translation matrix */
inline static Matrix4 translation(const Vector3& v) {
return Matrix4(Matrix3::identity(), v);
}
inline static Matrix4 translation(float x, float y, float z) {
return Matrix4(Matrix3::identity(), Vector3(x, y, z));
}
/** Create a rotation matrix that rotates \a deg degrees around the Y axis */
inline static Matrix4 yawDegrees(float deg) {
return Matrix4(Matrix3::fromAxisAngle(Vector3::unitY(), toRadians(deg)));
}
inline static Matrix4 pitchDegrees(float deg) {
return Matrix4(Matrix3::fromAxisAngle(Vector3::unitX(), toRadians(deg)));
}
inline static Matrix4 rollDegrees(float deg) {
return Matrix4(Matrix3::fromAxisAngle(Vector3::unitZ(), toRadians(deg)));
}
};
/** Double-precision 4x4 matrix */
class Matrix4float64 {
private:
double elt[4][4];
public:
explicit Matrix4float64(const Matrix4& m);
/** all zeros */
Matrix4float64();
Matrix4float64(
double r1c1, double r1c2, double r1c3, double r1c4,
double r2c1, double r2c2, double r2c3, double r2c4,
double r3c1, double r3c2, double r3c3, double r3c4,
double r4c1, double r4c2, double r4c3, double r4c4);
// Special values.
// Intentionally not inlined: see Matrix3::identity() for details.
static const Matrix4float64& identity();
static const Matrix4float64& zero();
bool operator!=(const Matrix4float64& other) const;
bool operator==(const Matrix4float64& other) const;
Vector4 operator*(const Vector4& vector) const;
static Matrix4float64 perspectiveProjection(
double left,
double right,
double bottom,
double top,
double nearval,
double farval,
float upDirection = -1.0f);
inline double* operator[](int r) {
debugAssert(r >= 0);
debugAssert(r < 4);
return (double*)&elt[r];
}
inline const double* operator[](int r) const {
debugAssert(r >= 0);
debugAssert(r < 4);
return (const double*)&elt[r];
}
inline operator double* () {
return (double*)&elt[0][0];
}
inline operator const double* () const {
return (const double*)&elt[0][0];
}
};
} // namespace
#ifdef _MSC_VER
# pragma warning (pop)
#endif
#endif