12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133 |
- /****************************************************************************
- **
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtGui module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL$
- ** Commercial License Usage
- ** Licensees holding valid commercial Qt licenses may use this file in
- ** accordance with the commercial license agreement provided with the
- ** Software or, alternatively, in accordance with the terms contained in
- ** a written agreement between you and The Qt Company. For licensing terms
- ** and conditions see https://www.qt.io/terms-conditions. For further
- ** information use the contact form at https://www.qt.io/contact-us.
- **
- ** GNU Lesser General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU Lesser
- ** General Public License version 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPL3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** included in the packaging of this file. Please review the following
- ** information to ensure the GNU General Public License requirements will
- ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QMATRIX4X4_H
- #define QMATRIX4X4_H
- #include <QtGui/qvector3d.h>
- #include <QtGui/qvector4d.h>
- #include <QtGui/qquaternion.h>
- #include <QtGui/qgenericmatrix.h>
- #include <QtCore/qrect.h>
- QT_BEGIN_NAMESPACE
- #ifndef QT_NO_MATRIX4X4
- class QMatrix;
- class QTransform;
- class QVariant;
- class Q_GUI_EXPORT QMatrix4x4
- {
- public:
- inline QMatrix4x4() { setToIdentity(); }
- explicit QMatrix4x4(Qt::Initialization) : flagBits(General) {}
- explicit QMatrix4x4(const float *values);
- inline QMatrix4x4(float m11, float m12, float m13, float m14,
- float m21, float m22, float m23, float m24,
- float m31, float m32, float m33, float m34,
- float m41, float m42, float m43, float m44);
- template <int N, int M>
- explicit QMatrix4x4(const QGenericMatrix<N, M, float>& matrix);
- QMatrix4x4(const float *values, int cols, int rows);
- QMatrix4x4(const QTransform& transform);
- QMatrix4x4(const QMatrix& matrix);
- inline const float& operator()(int row, int column) const;
- inline float& operator()(int row, int column);
- #ifndef QT_NO_VECTOR4D
- inline QVector4D column(int index) const;
- inline void setColumn(int index, const QVector4D& value);
- inline QVector4D row(int index) const;
- inline void setRow(int index, const QVector4D& value);
- #endif
- inline bool isAffine() const;
- inline bool isIdentity() const;
- inline void setToIdentity();
- inline void fill(float value);
- double determinant() const;
- QMatrix4x4 inverted(bool *invertible = Q_NULLPTR) const;
- QMatrix4x4 transposed() const;
- QMatrix3x3 normalMatrix() const;
- inline QMatrix4x4& operator+=(const QMatrix4x4& other);
- inline QMatrix4x4& operator-=(const QMatrix4x4& other);
- inline QMatrix4x4& operator*=(const QMatrix4x4& other);
- inline QMatrix4x4& operator*=(float factor);
- QMatrix4x4& operator/=(float divisor);
- inline bool operator==(const QMatrix4x4& other) const;
- inline bool operator!=(const QMatrix4x4& other) const;
- friend QMatrix4x4 operator+(const QMatrix4x4& m1, const QMatrix4x4& m2);
- friend QMatrix4x4 operator-(const QMatrix4x4& m1, const QMatrix4x4& m2);
- friend QMatrix4x4 operator*(const QMatrix4x4& m1, const QMatrix4x4& m2);
- #ifndef QT_NO_VECTOR3D
- friend QVector3D operator*(const QMatrix4x4& matrix, const QVector3D& vector);
- friend QVector3D operator*(const QVector3D& vector, const QMatrix4x4& matrix);
- #endif
- #ifndef QT_NO_VECTOR4D
- friend QVector4D operator*(const QVector4D& vector, const QMatrix4x4& matrix);
- friend QVector4D operator*(const QMatrix4x4& matrix, const QVector4D& vector);
- #endif
- friend QPoint operator*(const QPoint& point, const QMatrix4x4& matrix);
- friend QPointF operator*(const QPointF& point, const QMatrix4x4& matrix);
- friend QMatrix4x4 operator-(const QMatrix4x4& matrix);
- friend QPoint operator*(const QMatrix4x4& matrix, const QPoint& point);
- friend QPointF operator*(const QMatrix4x4& matrix, const QPointF& point);
- friend QMatrix4x4 operator*(float factor, const QMatrix4x4& matrix);
- friend QMatrix4x4 operator*(const QMatrix4x4& matrix, float factor);
- friend Q_GUI_EXPORT QMatrix4x4 operator/(const QMatrix4x4& matrix, float divisor);
- friend inline bool qFuzzyCompare(const QMatrix4x4& m1, const QMatrix4x4& m2);
- #ifndef QT_NO_VECTOR3D
- void scale(const QVector3D& vector);
- void translate(const QVector3D& vector);
- void rotate(float angle, const QVector3D& vector);
- #endif
- void scale(float x, float y);
- void scale(float x, float y, float z);
- void scale(float factor);
- void translate(float x, float y);
- void translate(float x, float y, float z);
- void rotate(float angle, float x, float y, float z = 0.0f);
- #ifndef QT_NO_QUATERNION
- void rotate(const QQuaternion& quaternion);
- #endif
- void ortho(const QRect& rect);
- void ortho(const QRectF& rect);
- void ortho(float left, float right, float bottom, float top, float nearPlane, float farPlane);
- void frustum(float left, float right, float bottom, float top, float nearPlane, float farPlane);
- void perspective(float verticalAngle, float aspectRatio, float nearPlane, float farPlane);
- #ifndef QT_NO_VECTOR3D
- void lookAt(const QVector3D& eye, const QVector3D& center, const QVector3D& up);
- #endif
- void viewport(const QRectF &rect);
- void viewport(float left, float bottom, float width, float height, float nearPlane = 0.0f, float farPlane = 1.0f);
- void flipCoordinates();
- void copyDataTo(float *values) const;
- QMatrix toAffine() const;
- QTransform toTransform() const;
- QTransform toTransform(float distanceToPlane) const;
- QPoint map(const QPoint& point) const;
- QPointF map(const QPointF& point) const;
- #ifndef QT_NO_VECTOR3D
- QVector3D map(const QVector3D& point) const;
- QVector3D mapVector(const QVector3D& vector) const;
- #endif
- #ifndef QT_NO_VECTOR4D
- QVector4D map(const QVector4D& point) const;
- #endif
- QRect mapRect(const QRect& rect) const;
- QRectF mapRect(const QRectF& rect) const;
- template <int N, int M>
- QGenericMatrix<N, M, float> toGenericMatrix() const;
- inline float *data();
- inline const float *data() const { return *m; }
- inline const float *constData() const { return *m; }
- void optimize();
- operator QVariant() const;
- #ifndef QT_NO_DEBUG_STREAM
- friend Q_GUI_EXPORT QDebug operator<<(QDebug dbg, const QMatrix4x4 &m);
- #endif
- private:
- float m[4][4]; // Column-major order to match OpenGL.
- int flagBits; // Flag bits from the enum below.
- // When matrices are multiplied, the flag bits are or-ed together.
- enum {
- Identity = 0x0000, // Identity matrix
- Translation = 0x0001, // Contains a translation
- Scale = 0x0002, // Contains a scale
- Rotation2D = 0x0004, // Contains a rotation about the Z axis
- Rotation = 0x0008, // Contains an arbitrary rotation
- Perspective = 0x0010, // Last row is different from (0, 0, 0, 1)
- General = 0x001f // General matrix, unknown contents
- };
- // Construct without initializing identity matrix.
- explicit QMatrix4x4(int) { }
- QMatrix4x4 orthonormalInverse() const;
- void projectedRotate(float angle, float x, float y, float z);
- friend class QGraphicsRotation;
- };
- Q_DECLARE_TYPEINFO(QMatrix4x4, Q_MOVABLE_TYPE);
- inline QMatrix4x4::QMatrix4x4
- (float m11, float m12, float m13, float m14,
- float m21, float m22, float m23, float m24,
- float m31, float m32, float m33, float m34,
- float m41, float m42, float m43, float m44)
- {
- m[0][0] = m11; m[0][1] = m21; m[0][2] = m31; m[0][3] = m41;
- m[1][0] = m12; m[1][1] = m22; m[1][2] = m32; m[1][3] = m42;
- m[2][0] = m13; m[2][1] = m23; m[2][2] = m33; m[2][3] = m43;
- m[3][0] = m14; m[3][1] = m24; m[3][2] = m34; m[3][3] = m44;
- flagBits = General;
- }
- template <int N, int M>
- Q_INLINE_TEMPLATE QMatrix4x4::QMatrix4x4
- (const QGenericMatrix<N, M, float>& matrix)
- {
- const float *values = matrix.constData();
- for (int matrixCol = 0; matrixCol < 4; ++matrixCol) {
- for (int matrixRow = 0; matrixRow < 4; ++matrixRow) {
- if (matrixCol < N && matrixRow < M)
- m[matrixCol][matrixRow] = values[matrixCol * M + matrixRow];
- else if (matrixCol == matrixRow)
- m[matrixCol][matrixRow] = 1.0f;
- else
- m[matrixCol][matrixRow] = 0.0f;
- }
- }
- flagBits = General;
- }
- template <int N, int M>
- QGenericMatrix<N, M, float> QMatrix4x4::toGenericMatrix() const
- {
- QGenericMatrix<N, M, float> result;
- float *values = result.data();
- for (int matrixCol = 0; matrixCol < N; ++matrixCol) {
- for (int matrixRow = 0; matrixRow < M; ++matrixRow) {
- if (matrixCol < 4 && matrixRow < 4)
- values[matrixCol * M + matrixRow] = m[matrixCol][matrixRow];
- else if (matrixCol == matrixRow)
- values[matrixCol * M + matrixRow] = 1.0f;
- else
- values[matrixCol * M + matrixRow] = 0.0f;
- }
- }
- return result;
- }
- inline const float& QMatrix4x4::operator()(int aRow, int aColumn) const
- {
- Q_ASSERT(aRow >= 0 && aRow < 4 && aColumn >= 0 && aColumn < 4);
- return m[aColumn][aRow];
- }
- inline float& QMatrix4x4::operator()(int aRow, int aColumn)
- {
- Q_ASSERT(aRow >= 0 && aRow < 4 && aColumn >= 0 && aColumn < 4);
- flagBits = General;
- return m[aColumn][aRow];
- }
- #ifndef QT_NO_VECTOR4D
- inline QVector4D QMatrix4x4::column(int index) const
- {
- Q_ASSERT(index >= 0 && index < 4);
- return QVector4D(m[index][0], m[index][1], m[index][2], m[index][3]);
- }
- inline void QMatrix4x4::setColumn(int index, const QVector4D& value)
- {
- Q_ASSERT(index >= 0 && index < 4);
- m[index][0] = value.x();
- m[index][1] = value.y();
- m[index][2] = value.z();
- m[index][3] = value.w();
- flagBits = General;
- }
- inline QVector4D QMatrix4x4::row(int index) const
- {
- Q_ASSERT(index >= 0 && index < 4);
- return QVector4D(m[0][index], m[1][index], m[2][index], m[3][index]);
- }
- inline void QMatrix4x4::setRow(int index, const QVector4D& value)
- {
- Q_ASSERT(index >= 0 && index < 4);
- m[0][index] = value.x();
- m[1][index] = value.y();
- m[2][index] = value.z();
- m[3][index] = value.w();
- flagBits = General;
- }
- #endif
- Q_GUI_EXPORT QMatrix4x4 operator/(const QMatrix4x4& matrix, float divisor);
- inline bool QMatrix4x4::isAffine() const
- {
- return m[0][3] == 0.0f && m[1][3] == 0.0f && m[2][3] == 0.0f && m[3][3] == 1.0f;
- }
- inline bool QMatrix4x4::isIdentity() const
- {
- if (flagBits == Identity)
- return true;
- if (m[0][0] != 1.0f || m[0][1] != 0.0f || m[0][2] != 0.0f)
- return false;
- if (m[0][3] != 0.0f || m[1][0] != 0.0f || m[1][1] != 1.0f)
- return false;
- if (m[1][2] != 0.0f || m[1][3] != 0.0f || m[2][0] != 0.0f)
- return false;
- if (m[2][1] != 0.0f || m[2][2] != 1.0f || m[2][3] != 0.0f)
- return false;
- if (m[3][0] != 0.0f || m[3][1] != 0.0f || m[3][2] != 0.0f)
- return false;
- return (m[3][3] == 1.0f);
- }
- inline void QMatrix4x4::setToIdentity()
- {
- m[0][0] = 1.0f;
- m[0][1] = 0.0f;
- m[0][2] = 0.0f;
- m[0][3] = 0.0f;
- m[1][0] = 0.0f;
- m[1][1] = 1.0f;
- m[1][2] = 0.0f;
- m[1][3] = 0.0f;
- m[2][0] = 0.0f;
- m[2][1] = 0.0f;
- m[2][2] = 1.0f;
- m[2][3] = 0.0f;
- m[3][0] = 0.0f;
- m[3][1] = 0.0f;
- m[3][2] = 0.0f;
- m[3][3] = 1.0f;
- flagBits = Identity;
- }
- inline void QMatrix4x4::fill(float value)
- {
- m[0][0] = value;
- m[0][1] = value;
- m[0][2] = value;
- m[0][3] = value;
- m[1][0] = value;
- m[1][1] = value;
- m[1][2] = value;
- m[1][3] = value;
- m[2][0] = value;
- m[2][1] = value;
- m[2][2] = value;
- m[2][3] = value;
- m[3][0] = value;
- m[3][1] = value;
- m[3][2] = value;
- m[3][3] = value;
- flagBits = General;
- }
- inline QMatrix4x4& QMatrix4x4::operator+=(const QMatrix4x4& other)
- {
- m[0][0] += other.m[0][0];
- m[0][1] += other.m[0][1];
- m[0][2] += other.m[0][2];
- m[0][3] += other.m[0][3];
- m[1][0] += other.m[1][0];
- m[1][1] += other.m[1][1];
- m[1][2] += other.m[1][2];
- m[1][3] += other.m[1][3];
- m[2][0] += other.m[2][0];
- m[2][1] += other.m[2][1];
- m[2][2] += other.m[2][2];
- m[2][3] += other.m[2][3];
- m[3][0] += other.m[3][0];
- m[3][1] += other.m[3][1];
- m[3][2] += other.m[3][2];
- m[3][3] += other.m[3][3];
- flagBits = General;
- return *this;
- }
- inline QMatrix4x4& QMatrix4x4::operator-=(const QMatrix4x4& other)
- {
- m[0][0] -= other.m[0][0];
- m[0][1] -= other.m[0][1];
- m[0][2] -= other.m[0][2];
- m[0][3] -= other.m[0][3];
- m[1][0] -= other.m[1][0];
- m[1][1] -= other.m[1][1];
- m[1][2] -= other.m[1][2];
- m[1][3] -= other.m[1][3];
- m[2][0] -= other.m[2][0];
- m[2][1] -= other.m[2][1];
- m[2][2] -= other.m[2][2];
- m[2][3] -= other.m[2][3];
- m[3][0] -= other.m[3][0];
- m[3][1] -= other.m[3][1];
- m[3][2] -= other.m[3][2];
- m[3][3] -= other.m[3][3];
- flagBits = General;
- return *this;
- }
- inline QMatrix4x4& QMatrix4x4::operator*=(const QMatrix4x4& other)
- {
- flagBits |= other.flagBits;
- if (flagBits < Rotation2D) {
- m[3][0] += m[0][0] * other.m[3][0];
- m[3][1] += m[1][1] * other.m[3][1];
- m[3][2] += m[2][2] * other.m[3][2];
- m[0][0] *= other.m[0][0];
- m[1][1] *= other.m[1][1];
- m[2][2] *= other.m[2][2];
- return *this;
- }
- float m0, m1, m2;
- m0 = m[0][0] * other.m[0][0]
- + m[1][0] * other.m[0][1]
- + m[2][0] * other.m[0][2]
- + m[3][0] * other.m[0][3];
- m1 = m[0][0] * other.m[1][0]
- + m[1][0] * other.m[1][1]
- + m[2][0] * other.m[1][2]
- + m[3][0] * other.m[1][3];
- m2 = m[0][0] * other.m[2][0]
- + m[1][0] * other.m[2][1]
- + m[2][0] * other.m[2][2]
- + m[3][0] * other.m[2][3];
- m[3][0] = m[0][0] * other.m[3][0]
- + m[1][0] * other.m[3][1]
- + m[2][0] * other.m[3][2]
- + m[3][0] * other.m[3][3];
- m[0][0] = m0;
- m[1][0] = m1;
- m[2][0] = m2;
- m0 = m[0][1] * other.m[0][0]
- + m[1][1] * other.m[0][1]
- + m[2][1] * other.m[0][2]
- + m[3][1] * other.m[0][3];
- m1 = m[0][1] * other.m[1][0]
- + m[1][1] * other.m[1][1]
- + m[2][1] * other.m[1][2]
- + m[3][1] * other.m[1][3];
- m2 = m[0][1] * other.m[2][0]
- + m[1][1] * other.m[2][1]
- + m[2][1] * other.m[2][2]
- + m[3][1] * other.m[2][3];
- m[3][1] = m[0][1] * other.m[3][0]
- + m[1][1] * other.m[3][1]
- + m[2][1] * other.m[3][2]
- + m[3][1] * other.m[3][3];
- m[0][1] = m0;
- m[1][1] = m1;
- m[2][1] = m2;
- m0 = m[0][2] * other.m[0][0]
- + m[1][2] * other.m[0][1]
- + m[2][2] * other.m[0][2]
- + m[3][2] * other.m[0][3];
- m1 = m[0][2] * other.m[1][0]
- + m[1][2] * other.m[1][1]
- + m[2][2] * other.m[1][2]
- + m[3][2] * other.m[1][3];
- m2 = m[0][2] * other.m[2][0]
- + m[1][2] * other.m[2][1]
- + m[2][2] * other.m[2][2]
- + m[3][2] * other.m[2][3];
- m[3][2] = m[0][2] * other.m[3][0]
- + m[1][2] * other.m[3][1]
- + m[2][2] * other.m[3][2]
- + m[3][2] * other.m[3][3];
- m[0][2] = m0;
- m[1][2] = m1;
- m[2][2] = m2;
- m0 = m[0][3] * other.m[0][0]
- + m[1][3] * other.m[0][1]
- + m[2][3] * other.m[0][2]
- + m[3][3] * other.m[0][3];
- m1 = m[0][3] * other.m[1][0]
- + m[1][3] * other.m[1][1]
- + m[2][3] * other.m[1][2]
- + m[3][3] * other.m[1][3];
- m2 = m[0][3] * other.m[2][0]
- + m[1][3] * other.m[2][1]
- + m[2][3] * other.m[2][2]
- + m[3][3] * other.m[2][3];
- m[3][3] = m[0][3] * other.m[3][0]
- + m[1][3] * other.m[3][1]
- + m[2][3] * other.m[3][2]
- + m[3][3] * other.m[3][3];
- m[0][3] = m0;
- m[1][3] = m1;
- m[2][3] = m2;
- return *this;
- }
- inline QMatrix4x4& QMatrix4x4::operator*=(float factor)
- {
- m[0][0] *= factor;
- m[0][1] *= factor;
- m[0][2] *= factor;
- m[0][3] *= factor;
- m[1][0] *= factor;
- m[1][1] *= factor;
- m[1][2] *= factor;
- m[1][3] *= factor;
- m[2][0] *= factor;
- m[2][1] *= factor;
- m[2][2] *= factor;
- m[2][3] *= factor;
- m[3][0] *= factor;
- m[3][1] *= factor;
- m[3][2] *= factor;
- m[3][3] *= factor;
- flagBits = General;
- return *this;
- }
- inline bool QMatrix4x4::operator==(const QMatrix4x4& other) const
- {
- return m[0][0] == other.m[0][0] &&
- m[0][1] == other.m[0][1] &&
- m[0][2] == other.m[0][2] &&
- m[0][3] == other.m[0][3] &&
- m[1][0] == other.m[1][0] &&
- m[1][1] == other.m[1][1] &&
- m[1][2] == other.m[1][2] &&
- m[1][3] == other.m[1][3] &&
- m[2][0] == other.m[2][0] &&
- m[2][1] == other.m[2][1] &&
- m[2][2] == other.m[2][2] &&
- m[2][3] == other.m[2][3] &&
- m[3][0] == other.m[3][0] &&
- m[3][1] == other.m[3][1] &&
- m[3][2] == other.m[3][2] &&
- m[3][3] == other.m[3][3];
- }
- inline bool QMatrix4x4::operator!=(const QMatrix4x4& other) const
- {
- return m[0][0] != other.m[0][0] ||
- m[0][1] != other.m[0][1] ||
- m[0][2] != other.m[0][2] ||
- m[0][3] != other.m[0][3] ||
- m[1][0] != other.m[1][0] ||
- m[1][1] != other.m[1][1] ||
- m[1][2] != other.m[1][2] ||
- m[1][3] != other.m[1][3] ||
- m[2][0] != other.m[2][0] ||
- m[2][1] != other.m[2][1] ||
- m[2][2] != other.m[2][2] ||
- m[2][3] != other.m[2][3] ||
- m[3][0] != other.m[3][0] ||
- m[3][1] != other.m[3][1] ||
- m[3][2] != other.m[3][2] ||
- m[3][3] != other.m[3][3];
- }
- inline QMatrix4x4 operator+(const QMatrix4x4& m1, const QMatrix4x4& m2)
- {
- QMatrix4x4 m(1);
- m.m[0][0] = m1.m[0][0] + m2.m[0][0];
- m.m[0][1] = m1.m[0][1] + m2.m[0][1];
- m.m[0][2] = m1.m[0][2] + m2.m[0][2];
- m.m[0][3] = m1.m[0][3] + m2.m[0][3];
- m.m[1][0] = m1.m[1][0] + m2.m[1][0];
- m.m[1][1] = m1.m[1][1] + m2.m[1][1];
- m.m[1][2] = m1.m[1][2] + m2.m[1][2];
- m.m[1][3] = m1.m[1][3] + m2.m[1][3];
- m.m[2][0] = m1.m[2][0] + m2.m[2][0];
- m.m[2][1] = m1.m[2][1] + m2.m[2][1];
- m.m[2][2] = m1.m[2][2] + m2.m[2][2];
- m.m[2][3] = m1.m[2][3] + m2.m[2][3];
- m.m[3][0] = m1.m[3][0] + m2.m[3][0];
- m.m[3][1] = m1.m[3][1] + m2.m[3][1];
- m.m[3][2] = m1.m[3][2] + m2.m[3][2];
- m.m[3][3] = m1.m[3][3] + m2.m[3][3];
- m.flagBits = QMatrix4x4::General;
- return m;
- }
- inline QMatrix4x4 operator-(const QMatrix4x4& m1, const QMatrix4x4& m2)
- {
- QMatrix4x4 m(1);
- m.m[0][0] = m1.m[0][0] - m2.m[0][0];
- m.m[0][1] = m1.m[0][1] - m2.m[0][1];
- m.m[0][2] = m1.m[0][2] - m2.m[0][2];
- m.m[0][3] = m1.m[0][3] - m2.m[0][3];
- m.m[1][0] = m1.m[1][0] - m2.m[1][0];
- m.m[1][1] = m1.m[1][1] - m2.m[1][1];
- m.m[1][2] = m1.m[1][2] - m2.m[1][2];
- m.m[1][3] = m1.m[1][3] - m2.m[1][3];
- m.m[2][0] = m1.m[2][0] - m2.m[2][0];
- m.m[2][1] = m1.m[2][1] - m2.m[2][1];
- m.m[2][2] = m1.m[2][2] - m2.m[2][2];
- m.m[2][3] = m1.m[2][3] - m2.m[2][3];
- m.m[3][0] = m1.m[3][0] - m2.m[3][0];
- m.m[3][1] = m1.m[3][1] - m2.m[3][1];
- m.m[3][2] = m1.m[3][2] - m2.m[3][2];
- m.m[3][3] = m1.m[3][3] - m2.m[3][3];
- m.flagBits = QMatrix4x4::General;
- return m;
- }
- inline QMatrix4x4 operator*(const QMatrix4x4& m1, const QMatrix4x4& m2)
- {
- int flagBits = m1.flagBits | m2.flagBits;
- if (flagBits < QMatrix4x4::Rotation2D) {
- QMatrix4x4 m = m1;
- m.m[3][0] += m.m[0][0] * m2.m[3][0];
- m.m[3][1] += m.m[1][1] * m2.m[3][1];
- m.m[3][2] += m.m[2][2] * m2.m[3][2];
- m.m[0][0] *= m2.m[0][0];
- m.m[1][1] *= m2.m[1][1];
- m.m[2][2] *= m2.m[2][2];
- m.flagBits = flagBits;
- return m;
- }
- QMatrix4x4 m(1);
- m.m[0][0] = m1.m[0][0] * m2.m[0][0]
- + m1.m[1][0] * m2.m[0][1]
- + m1.m[2][0] * m2.m[0][2]
- + m1.m[3][0] * m2.m[0][3];
- m.m[0][1] = m1.m[0][1] * m2.m[0][0]
- + m1.m[1][1] * m2.m[0][1]
- + m1.m[2][1] * m2.m[0][2]
- + m1.m[3][1] * m2.m[0][3];
- m.m[0][2] = m1.m[0][2] * m2.m[0][0]
- + m1.m[1][2] * m2.m[0][1]
- + m1.m[2][2] * m2.m[0][2]
- + m1.m[3][2] * m2.m[0][3];
- m.m[0][3] = m1.m[0][3] * m2.m[0][0]
- + m1.m[1][3] * m2.m[0][1]
- + m1.m[2][3] * m2.m[0][2]
- + m1.m[3][3] * m2.m[0][3];
- m.m[1][0] = m1.m[0][0] * m2.m[1][0]
- + m1.m[1][0] * m2.m[1][1]
- + m1.m[2][0] * m2.m[1][2]
- + m1.m[3][0] * m2.m[1][3];
- m.m[1][1] = m1.m[0][1] * m2.m[1][0]
- + m1.m[1][1] * m2.m[1][1]
- + m1.m[2][1] * m2.m[1][2]
- + m1.m[3][1] * m2.m[1][3];
- m.m[1][2] = m1.m[0][2] * m2.m[1][0]
- + m1.m[1][2] * m2.m[1][1]
- + m1.m[2][2] * m2.m[1][2]
- + m1.m[3][2] * m2.m[1][3];
- m.m[1][3] = m1.m[0][3] * m2.m[1][0]
- + m1.m[1][3] * m2.m[1][1]
- + m1.m[2][3] * m2.m[1][2]
- + m1.m[3][3] * m2.m[1][3];
- m.m[2][0] = m1.m[0][0] * m2.m[2][0]
- + m1.m[1][0] * m2.m[2][1]
- + m1.m[2][0] * m2.m[2][2]
- + m1.m[3][0] * m2.m[2][3];
- m.m[2][1] = m1.m[0][1] * m2.m[2][0]
- + m1.m[1][1] * m2.m[2][1]
- + m1.m[2][1] * m2.m[2][2]
- + m1.m[3][1] * m2.m[2][3];
- m.m[2][2] = m1.m[0][2] * m2.m[2][0]
- + m1.m[1][2] * m2.m[2][1]
- + m1.m[2][2] * m2.m[2][2]
- + m1.m[3][2] * m2.m[2][3];
- m.m[2][3] = m1.m[0][3] * m2.m[2][0]
- + m1.m[1][3] * m2.m[2][1]
- + m1.m[2][3] * m2.m[2][2]
- + m1.m[3][3] * m2.m[2][3];
- m.m[3][0] = m1.m[0][0] * m2.m[3][0]
- + m1.m[1][0] * m2.m[3][1]
- + m1.m[2][0] * m2.m[3][2]
- + m1.m[3][0] * m2.m[3][3];
- m.m[3][1] = m1.m[0][1] * m2.m[3][0]
- + m1.m[1][1] * m2.m[3][1]
- + m1.m[2][1] * m2.m[3][2]
- + m1.m[3][1] * m2.m[3][3];
- m.m[3][2] = m1.m[0][2] * m2.m[3][0]
- + m1.m[1][2] * m2.m[3][1]
- + m1.m[2][2] * m2.m[3][2]
- + m1.m[3][2] * m2.m[3][3];
- m.m[3][3] = m1.m[0][3] * m2.m[3][0]
- + m1.m[1][3] * m2.m[3][1]
- + m1.m[2][3] * m2.m[3][2]
- + m1.m[3][3] * m2.m[3][3];
- m.flagBits = flagBits;
- return m;
- }
- #ifndef QT_NO_VECTOR3D
- inline QVector3D operator*(const QVector3D& vector, const QMatrix4x4& matrix)
- {
- float x, y, z, w;
- x = vector.x() * matrix.m[0][0] +
- vector.y() * matrix.m[0][1] +
- vector.z() * matrix.m[0][2] +
- matrix.m[0][3];
- y = vector.x() * matrix.m[1][0] +
- vector.y() * matrix.m[1][1] +
- vector.z() * matrix.m[1][2] +
- matrix.m[1][3];
- z = vector.x() * matrix.m[2][0] +
- vector.y() * matrix.m[2][1] +
- vector.z() * matrix.m[2][2] +
- matrix.m[2][3];
- w = vector.x() * matrix.m[3][0] +
- vector.y() * matrix.m[3][1] +
- vector.z() * matrix.m[3][2] +
- matrix.m[3][3];
- if (w == 1.0f)
- return QVector3D(x, y, z);
- else
- return QVector3D(x / w, y / w, z / w);
- }
- inline QVector3D operator*(const QMatrix4x4& matrix, const QVector3D& vector)
- {
- float x, y, z, w;
- if (matrix.flagBits == QMatrix4x4::Identity) {
- return vector;
- } else if (matrix.flagBits < QMatrix4x4::Rotation2D) {
- // Translation | Scale
- return QVector3D(vector.x() * matrix.m[0][0] + matrix.m[3][0],
- vector.y() * matrix.m[1][1] + matrix.m[3][1],
- vector.z() * matrix.m[2][2] + matrix.m[3][2]);
- } else if (matrix.flagBits < QMatrix4x4::Rotation) {
- // Translation | Scale | Rotation2D
- return QVector3D(vector.x() * matrix.m[0][0] + vector.y() * matrix.m[1][0] + matrix.m[3][0],
- vector.x() * matrix.m[0][1] + vector.y() * matrix.m[1][1] + matrix.m[3][1],
- vector.z() * matrix.m[2][2] + matrix.m[3][2]);
- } else {
- x = vector.x() * matrix.m[0][0] +
- vector.y() * matrix.m[1][0] +
- vector.z() * matrix.m[2][0] +
- matrix.m[3][0];
- y = vector.x() * matrix.m[0][1] +
- vector.y() * matrix.m[1][1] +
- vector.z() * matrix.m[2][1] +
- matrix.m[3][1];
- z = vector.x() * matrix.m[0][2] +
- vector.y() * matrix.m[1][2] +
- vector.z() * matrix.m[2][2] +
- matrix.m[3][2];
- w = vector.x() * matrix.m[0][3] +
- vector.y() * matrix.m[1][3] +
- vector.z() * matrix.m[2][3] +
- matrix.m[3][3];
- if (w == 1.0f)
- return QVector3D(x, y, z);
- else
- return QVector3D(x / w, y / w, z / w);
- }
- }
- #endif
- #ifndef QT_NO_VECTOR4D
- inline QVector4D operator*(const QVector4D& vector, const QMatrix4x4& matrix)
- {
- float x, y, z, w;
- x = vector.x() * matrix.m[0][0] +
- vector.y() * matrix.m[0][1] +
- vector.z() * matrix.m[0][2] +
- vector.w() * matrix.m[0][3];
- y = vector.x() * matrix.m[1][0] +
- vector.y() * matrix.m[1][1] +
- vector.z() * matrix.m[1][2] +
- vector.w() * matrix.m[1][3];
- z = vector.x() * matrix.m[2][0] +
- vector.y() * matrix.m[2][1] +
- vector.z() * matrix.m[2][2] +
- vector.w() * matrix.m[2][3];
- w = vector.x() * matrix.m[3][0] +
- vector.y() * matrix.m[3][1] +
- vector.z() * matrix.m[3][2] +
- vector.w() * matrix.m[3][3];
- return QVector4D(x, y, z, w);
- }
- inline QVector4D operator*(const QMatrix4x4& matrix, const QVector4D& vector)
- {
- float x, y, z, w;
- x = vector.x() * matrix.m[0][0] +
- vector.y() * matrix.m[1][0] +
- vector.z() * matrix.m[2][0] +
- vector.w() * matrix.m[3][0];
- y = vector.x() * matrix.m[0][1] +
- vector.y() * matrix.m[1][1] +
- vector.z() * matrix.m[2][1] +
- vector.w() * matrix.m[3][1];
- z = vector.x() * matrix.m[0][2] +
- vector.y() * matrix.m[1][2] +
- vector.z() * matrix.m[2][2] +
- vector.w() * matrix.m[3][2];
- w = vector.x() * matrix.m[0][3] +
- vector.y() * matrix.m[1][3] +
- vector.z() * matrix.m[2][3] +
- vector.w() * matrix.m[3][3];
- return QVector4D(x, y, z, w);
- }
- #endif
- inline QPoint operator*(const QPoint& point, const QMatrix4x4& matrix)
- {
- float xin, yin;
- float x, y, w;
- xin = point.x();
- yin = point.y();
- x = xin * matrix.m[0][0] +
- yin * matrix.m[0][1] +
- matrix.m[0][3];
- y = xin * matrix.m[1][0] +
- yin * matrix.m[1][1] +
- matrix.m[1][3];
- w = xin * matrix.m[3][0] +
- yin * matrix.m[3][1] +
- matrix.m[3][3];
- if (w == 1.0f)
- return QPoint(qRound(x), qRound(y));
- else
- return QPoint(qRound(x / w), qRound(y / w));
- }
- inline QPointF operator*(const QPointF& point, const QMatrix4x4& matrix)
- {
- float xin, yin;
- float x, y, w;
- xin = point.x();
- yin = point.y();
- x = xin * matrix.m[0][0] +
- yin * matrix.m[0][1] +
- matrix.m[0][3];
- y = xin * matrix.m[1][0] +
- yin * matrix.m[1][1] +
- matrix.m[1][3];
- w = xin * matrix.m[3][0] +
- yin * matrix.m[3][1] +
- matrix.m[3][3];
- if (w == 1.0f) {
- return QPointF(float(x), float(y));
- } else {
- return QPointF(float(x / w), float(y / w));
- }
- }
- inline QPoint operator*(const QMatrix4x4& matrix, const QPoint& point)
- {
- float xin, yin;
- float x, y, w;
- xin = point.x();
- yin = point.y();
- if (matrix.flagBits == QMatrix4x4::Identity) {
- return point;
- } else if (matrix.flagBits < QMatrix4x4::Rotation2D) {
- // Translation | Scale
- return QPoint(qRound(xin * matrix.m[0][0] + matrix.m[3][0]),
- qRound(yin * matrix.m[1][1] + matrix.m[3][1]));
- } else if (matrix.flagBits < QMatrix4x4::Perspective) {
- return QPoint(qRound(xin * matrix.m[0][0] + yin * matrix.m[1][0] + matrix.m[3][0]),
- qRound(xin * matrix.m[0][1] + yin * matrix.m[1][1] + matrix.m[3][1]));
- } else {
- x = xin * matrix.m[0][0] +
- yin * matrix.m[1][0] +
- matrix.m[3][0];
- y = xin * matrix.m[0][1] +
- yin * matrix.m[1][1] +
- matrix.m[3][1];
- w = xin * matrix.m[0][3] +
- yin * matrix.m[1][3] +
- matrix.m[3][3];
- if (w == 1.0f)
- return QPoint(qRound(x), qRound(y));
- else
- return QPoint(qRound(x / w), qRound(y / w));
- }
- }
- inline QPointF operator*(const QMatrix4x4& matrix, const QPointF& point)
- {
- float xin, yin;
- float x, y, w;
- xin = point.x();
- yin = point.y();
- if (matrix.flagBits == QMatrix4x4::Identity) {
- return point;
- } else if (matrix.flagBits < QMatrix4x4::Rotation2D) {
- // Translation | Scale
- return QPointF(xin * matrix.m[0][0] + matrix.m[3][0],
- yin * matrix.m[1][1] + matrix.m[3][1]);
- } else if (matrix.flagBits < QMatrix4x4::Perspective) {
- return QPointF(xin * matrix.m[0][0] + yin * matrix.m[1][0] + matrix.m[3][0],
- xin * matrix.m[0][1] + yin * matrix.m[1][1] + matrix.m[3][1]);
- } else {
- x = xin * matrix.m[0][0] +
- yin * matrix.m[1][0] +
- matrix.m[3][0];
- y = xin * matrix.m[0][1] +
- yin * matrix.m[1][1] +
- matrix.m[3][1];
- w = xin * matrix.m[0][3] +
- yin * matrix.m[1][3] +
- matrix.m[3][3];
- if (w == 1.0f) {
- return QPointF(float(x), float(y));
- } else {
- return QPointF(float(x / w), float(y / w));
- }
- }
- }
- inline QMatrix4x4 operator-(const QMatrix4x4& matrix)
- {
- QMatrix4x4 m(1);
- m.m[0][0] = -matrix.m[0][0];
- m.m[0][1] = -matrix.m[0][1];
- m.m[0][2] = -matrix.m[0][2];
- m.m[0][3] = -matrix.m[0][3];
- m.m[1][0] = -matrix.m[1][0];
- m.m[1][1] = -matrix.m[1][1];
- m.m[1][2] = -matrix.m[1][2];
- m.m[1][3] = -matrix.m[1][3];
- m.m[2][0] = -matrix.m[2][0];
- m.m[2][1] = -matrix.m[2][1];
- m.m[2][2] = -matrix.m[2][2];
- m.m[2][3] = -matrix.m[2][3];
- m.m[3][0] = -matrix.m[3][0];
- m.m[3][1] = -matrix.m[3][1];
- m.m[3][2] = -matrix.m[3][2];
- m.m[3][3] = -matrix.m[3][3];
- m.flagBits = QMatrix4x4::General;
- return m;
- }
- inline QMatrix4x4 operator*(float factor, const QMatrix4x4& matrix)
- {
- QMatrix4x4 m(1);
- m.m[0][0] = matrix.m[0][0] * factor;
- m.m[0][1] = matrix.m[0][1] * factor;
- m.m[0][2] = matrix.m[0][2] * factor;
- m.m[0][3] = matrix.m[0][3] * factor;
- m.m[1][0] = matrix.m[1][0] * factor;
- m.m[1][1] = matrix.m[1][1] * factor;
- m.m[1][2] = matrix.m[1][2] * factor;
- m.m[1][3] = matrix.m[1][3] * factor;
- m.m[2][0] = matrix.m[2][0] * factor;
- m.m[2][1] = matrix.m[2][1] * factor;
- m.m[2][2] = matrix.m[2][2] * factor;
- m.m[2][3] = matrix.m[2][3] * factor;
- m.m[3][0] = matrix.m[3][0] * factor;
- m.m[3][1] = matrix.m[3][1] * factor;
- m.m[3][2] = matrix.m[3][2] * factor;
- m.m[3][3] = matrix.m[3][3] * factor;
- m.flagBits = QMatrix4x4::General;
- return m;
- }
- inline QMatrix4x4 operator*(const QMatrix4x4& matrix, float factor)
- {
- QMatrix4x4 m(1);
- m.m[0][0] = matrix.m[0][0] * factor;
- m.m[0][1] = matrix.m[0][1] * factor;
- m.m[0][2] = matrix.m[0][2] * factor;
- m.m[0][3] = matrix.m[0][3] * factor;
- m.m[1][0] = matrix.m[1][0] * factor;
- m.m[1][1] = matrix.m[1][1] * factor;
- m.m[1][2] = matrix.m[1][2] * factor;
- m.m[1][3] = matrix.m[1][3] * factor;
- m.m[2][0] = matrix.m[2][0] * factor;
- m.m[2][1] = matrix.m[2][1] * factor;
- m.m[2][2] = matrix.m[2][2] * factor;
- m.m[2][3] = matrix.m[2][3] * factor;
- m.m[3][0] = matrix.m[3][0] * factor;
- m.m[3][1] = matrix.m[3][1] * factor;
- m.m[3][2] = matrix.m[3][2] * factor;
- m.m[3][3] = matrix.m[3][3] * factor;
- m.flagBits = QMatrix4x4::General;
- return m;
- }
- inline bool qFuzzyCompare(const QMatrix4x4& m1, const QMatrix4x4& m2)
- {
- return qFuzzyCompare(m1.m[0][0], m2.m[0][0]) &&
- qFuzzyCompare(m1.m[0][1], m2.m[0][1]) &&
- qFuzzyCompare(m1.m[0][2], m2.m[0][2]) &&
- qFuzzyCompare(m1.m[0][3], m2.m[0][3]) &&
- qFuzzyCompare(m1.m[1][0], m2.m[1][0]) &&
- qFuzzyCompare(m1.m[1][1], m2.m[1][1]) &&
- qFuzzyCompare(m1.m[1][2], m2.m[1][2]) &&
- qFuzzyCompare(m1.m[1][3], m2.m[1][3]) &&
- qFuzzyCompare(m1.m[2][0], m2.m[2][0]) &&
- qFuzzyCompare(m1.m[2][1], m2.m[2][1]) &&
- qFuzzyCompare(m1.m[2][2], m2.m[2][2]) &&
- qFuzzyCompare(m1.m[2][3], m2.m[2][3]) &&
- qFuzzyCompare(m1.m[3][0], m2.m[3][0]) &&
- qFuzzyCompare(m1.m[3][1], m2.m[3][1]) &&
- qFuzzyCompare(m1.m[3][2], m2.m[3][2]) &&
- qFuzzyCompare(m1.m[3][3], m2.m[3][3]);
- }
- inline QPoint QMatrix4x4::map(const QPoint& point) const
- {
- return *this * point;
- }
- inline QPointF QMatrix4x4::map(const QPointF& point) const
- {
- return *this * point;
- }
- #ifndef QT_NO_VECTOR3D
- inline QVector3D QMatrix4x4::map(const QVector3D& point) const
- {
- return *this * point;
- }
- inline QVector3D QMatrix4x4::mapVector(const QVector3D& vector) const
- {
- if (flagBits < Scale) {
- // Translation
- return vector;
- } else if (flagBits < Rotation2D) {
- // Translation | Scale
- return QVector3D(vector.x() * m[0][0],
- vector.y() * m[1][1],
- vector.z() * m[2][2]);
- } else {
- return QVector3D(vector.x() * m[0][0] +
- vector.y() * m[1][0] +
- vector.z() * m[2][0],
- vector.x() * m[0][1] +
- vector.y() * m[1][1] +
- vector.z() * m[2][1],
- vector.x() * m[0][2] +
- vector.y() * m[1][2] +
- vector.z() * m[2][2]);
- }
- }
- #endif
- #ifndef QT_NO_VECTOR4D
- inline QVector4D QMatrix4x4::map(const QVector4D& point) const
- {
- return *this * point;
- }
- #endif
- inline float *QMatrix4x4::data()
- {
- // We have to assume that the caller will modify the matrix elements,
- // so we flip it over to "General" mode.
- flagBits = General;
- return *m;
- }
- inline void QMatrix4x4::viewport(const QRectF &rect)
- {
- viewport(rect.x(), rect.y(), rect.width(), rect.height());
- }
- #ifndef QT_NO_DEBUG_STREAM
- Q_GUI_EXPORT QDebug operator<<(QDebug dbg, const QMatrix4x4 &m);
- #endif
- #ifndef QT_NO_DATASTREAM
- Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QMatrix4x4 &);
- Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QMatrix4x4 &);
- #endif
- #if QT_DEPRECATED_SINCE(5, 0)
- template <int N, int M>
- QT_DEPRECATED QMatrix4x4 qGenericMatrixToMatrix4x4(const QGenericMatrix<N, M, float>& matrix)
- {
- return QMatrix4x4(matrix.constData(), N, M);
- }
- template <int N, int M>
- QT_DEPRECATED QGenericMatrix<N, M, float> qGenericMatrixFromMatrix4x4(const QMatrix4x4& matrix)
- {
- QGenericMatrix<N, M, float> result;
- const float *m = matrix.constData();
- float *values = result.data();
- for (int col = 0; col < N; ++col) {
- for (int row = 0; row < M; ++row) {
- if (col < 4 && row < 4)
- values[col * M + row] = m[col * 4 + row];
- else if (col == row)
- values[col * M + row] = 1.0f;
- else
- values[col * M + row] = 0.0f;
- }
- }
- return result;
- }
- #endif
- #endif
- QT_END_NAMESPACE
- #endif
|