qmatrix4x4.h 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QMATRIX4X4_H
  40. #define QMATRIX4X4_H
  41. #include <QtGui/qvector3d.h>
  42. #include <QtGui/qvector4d.h>
  43. #include <QtGui/qquaternion.h>
  44. #include <QtGui/qgenericmatrix.h>
  45. #include <QtCore/qrect.h>
  46. QT_BEGIN_NAMESPACE
  47. #ifndef QT_NO_MATRIX4X4
  48. class QMatrix;
  49. class QTransform;
  50. class QVariant;
  51. class Q_GUI_EXPORT QMatrix4x4
  52. {
  53. public:
  54. inline QMatrix4x4() { setToIdentity(); }
  55. explicit QMatrix4x4(Qt::Initialization) : flagBits(General) {}
  56. explicit QMatrix4x4(const float *values);
  57. inline QMatrix4x4(float m11, float m12, float m13, float m14,
  58. float m21, float m22, float m23, float m24,
  59. float m31, float m32, float m33, float m34,
  60. float m41, float m42, float m43, float m44);
  61. template <int N, int M>
  62. explicit QMatrix4x4(const QGenericMatrix<N, M, float>& matrix);
  63. QMatrix4x4(const float *values, int cols, int rows);
  64. QMatrix4x4(const QTransform& transform);
  65. QMatrix4x4(const QMatrix& matrix);
  66. inline const float& operator()(int row, int column) const;
  67. inline float& operator()(int row, int column);
  68. #ifndef QT_NO_VECTOR4D
  69. inline QVector4D column(int index) const;
  70. inline void setColumn(int index, const QVector4D& value);
  71. inline QVector4D row(int index) const;
  72. inline void setRow(int index, const QVector4D& value);
  73. #endif
  74. inline bool isAffine() const;
  75. inline bool isIdentity() const;
  76. inline void setToIdentity();
  77. inline void fill(float value);
  78. double determinant() const;
  79. QMatrix4x4 inverted(bool *invertible = Q_NULLPTR) const;
  80. QMatrix4x4 transposed() const;
  81. QMatrix3x3 normalMatrix() const;
  82. inline QMatrix4x4& operator+=(const QMatrix4x4& other);
  83. inline QMatrix4x4& operator-=(const QMatrix4x4& other);
  84. inline QMatrix4x4& operator*=(const QMatrix4x4& other);
  85. inline QMatrix4x4& operator*=(float factor);
  86. QMatrix4x4& operator/=(float divisor);
  87. inline bool operator==(const QMatrix4x4& other) const;
  88. inline bool operator!=(const QMatrix4x4& other) const;
  89. friend QMatrix4x4 operator+(const QMatrix4x4& m1, const QMatrix4x4& m2);
  90. friend QMatrix4x4 operator-(const QMatrix4x4& m1, const QMatrix4x4& m2);
  91. friend QMatrix4x4 operator*(const QMatrix4x4& m1, const QMatrix4x4& m2);
  92. #ifndef QT_NO_VECTOR3D
  93. friend QVector3D operator*(const QMatrix4x4& matrix, const QVector3D& vector);
  94. friend QVector3D operator*(const QVector3D& vector, const QMatrix4x4& matrix);
  95. #endif
  96. #ifndef QT_NO_VECTOR4D
  97. friend QVector4D operator*(const QVector4D& vector, const QMatrix4x4& matrix);
  98. friend QVector4D operator*(const QMatrix4x4& matrix, const QVector4D& vector);
  99. #endif
  100. friend QPoint operator*(const QPoint& point, const QMatrix4x4& matrix);
  101. friend QPointF operator*(const QPointF& point, const QMatrix4x4& matrix);
  102. friend QMatrix4x4 operator-(const QMatrix4x4& matrix);
  103. friend QPoint operator*(const QMatrix4x4& matrix, const QPoint& point);
  104. friend QPointF operator*(const QMatrix4x4& matrix, const QPointF& point);
  105. friend QMatrix4x4 operator*(float factor, const QMatrix4x4& matrix);
  106. friend QMatrix4x4 operator*(const QMatrix4x4& matrix, float factor);
  107. friend Q_GUI_EXPORT QMatrix4x4 operator/(const QMatrix4x4& matrix, float divisor);
  108. friend inline bool qFuzzyCompare(const QMatrix4x4& m1, const QMatrix4x4& m2);
  109. #ifndef QT_NO_VECTOR3D
  110. void scale(const QVector3D& vector);
  111. void translate(const QVector3D& vector);
  112. void rotate(float angle, const QVector3D& vector);
  113. #endif
  114. void scale(float x, float y);
  115. void scale(float x, float y, float z);
  116. void scale(float factor);
  117. void translate(float x, float y);
  118. void translate(float x, float y, float z);
  119. void rotate(float angle, float x, float y, float z = 0.0f);
  120. #ifndef QT_NO_QUATERNION
  121. void rotate(const QQuaternion& quaternion);
  122. #endif
  123. void ortho(const QRect& rect);
  124. void ortho(const QRectF& rect);
  125. void ortho(float left, float right, float bottom, float top, float nearPlane, float farPlane);
  126. void frustum(float left, float right, float bottom, float top, float nearPlane, float farPlane);
  127. void perspective(float verticalAngle, float aspectRatio, float nearPlane, float farPlane);
  128. #ifndef QT_NO_VECTOR3D
  129. void lookAt(const QVector3D& eye, const QVector3D& center, const QVector3D& up);
  130. #endif
  131. void viewport(const QRectF &rect);
  132. void viewport(float left, float bottom, float width, float height, float nearPlane = 0.0f, float farPlane = 1.0f);
  133. void flipCoordinates();
  134. void copyDataTo(float *values) const;
  135. QMatrix toAffine() const;
  136. QTransform toTransform() const;
  137. QTransform toTransform(float distanceToPlane) const;
  138. QPoint map(const QPoint& point) const;
  139. QPointF map(const QPointF& point) const;
  140. #ifndef QT_NO_VECTOR3D
  141. QVector3D map(const QVector3D& point) const;
  142. QVector3D mapVector(const QVector3D& vector) const;
  143. #endif
  144. #ifndef QT_NO_VECTOR4D
  145. QVector4D map(const QVector4D& point) const;
  146. #endif
  147. QRect mapRect(const QRect& rect) const;
  148. QRectF mapRect(const QRectF& rect) const;
  149. template <int N, int M>
  150. QGenericMatrix<N, M, float> toGenericMatrix() const;
  151. inline float *data();
  152. inline const float *data() const { return *m; }
  153. inline const float *constData() const { return *m; }
  154. void optimize();
  155. operator QVariant() const;
  156. #ifndef QT_NO_DEBUG_STREAM
  157. friend Q_GUI_EXPORT QDebug operator<<(QDebug dbg, const QMatrix4x4 &m);
  158. #endif
  159. private:
  160. float m[4][4]; // Column-major order to match OpenGL.
  161. int flagBits; // Flag bits from the enum below.
  162. // When matrices are multiplied, the flag bits are or-ed together.
  163. enum {
  164. Identity = 0x0000, // Identity matrix
  165. Translation = 0x0001, // Contains a translation
  166. Scale = 0x0002, // Contains a scale
  167. Rotation2D = 0x0004, // Contains a rotation about the Z axis
  168. Rotation = 0x0008, // Contains an arbitrary rotation
  169. Perspective = 0x0010, // Last row is different from (0, 0, 0, 1)
  170. General = 0x001f // General matrix, unknown contents
  171. };
  172. // Construct without initializing identity matrix.
  173. explicit QMatrix4x4(int) { }
  174. QMatrix4x4 orthonormalInverse() const;
  175. void projectedRotate(float angle, float x, float y, float z);
  176. friend class QGraphicsRotation;
  177. };
  178. Q_DECLARE_TYPEINFO(QMatrix4x4, Q_MOVABLE_TYPE);
  179. inline QMatrix4x4::QMatrix4x4
  180. (float m11, float m12, float m13, float m14,
  181. float m21, float m22, float m23, float m24,
  182. float m31, float m32, float m33, float m34,
  183. float m41, float m42, float m43, float m44)
  184. {
  185. m[0][0] = m11; m[0][1] = m21; m[0][2] = m31; m[0][3] = m41;
  186. m[1][0] = m12; m[1][1] = m22; m[1][2] = m32; m[1][3] = m42;
  187. m[2][0] = m13; m[2][1] = m23; m[2][2] = m33; m[2][3] = m43;
  188. m[3][0] = m14; m[3][1] = m24; m[3][2] = m34; m[3][3] = m44;
  189. flagBits = General;
  190. }
  191. template <int N, int M>
  192. Q_INLINE_TEMPLATE QMatrix4x4::QMatrix4x4
  193. (const QGenericMatrix<N, M, float>& matrix)
  194. {
  195. const float *values = matrix.constData();
  196. for (int matrixCol = 0; matrixCol < 4; ++matrixCol) {
  197. for (int matrixRow = 0; matrixRow < 4; ++matrixRow) {
  198. if (matrixCol < N && matrixRow < M)
  199. m[matrixCol][matrixRow] = values[matrixCol * M + matrixRow];
  200. else if (matrixCol == matrixRow)
  201. m[matrixCol][matrixRow] = 1.0f;
  202. else
  203. m[matrixCol][matrixRow] = 0.0f;
  204. }
  205. }
  206. flagBits = General;
  207. }
  208. template <int N, int M>
  209. QGenericMatrix<N, M, float> QMatrix4x4::toGenericMatrix() const
  210. {
  211. QGenericMatrix<N, M, float> result;
  212. float *values = result.data();
  213. for (int matrixCol = 0; matrixCol < N; ++matrixCol) {
  214. for (int matrixRow = 0; matrixRow < M; ++matrixRow) {
  215. if (matrixCol < 4 && matrixRow < 4)
  216. values[matrixCol * M + matrixRow] = m[matrixCol][matrixRow];
  217. else if (matrixCol == matrixRow)
  218. values[matrixCol * M + matrixRow] = 1.0f;
  219. else
  220. values[matrixCol * M + matrixRow] = 0.0f;
  221. }
  222. }
  223. return result;
  224. }
  225. inline const float& QMatrix4x4::operator()(int aRow, int aColumn) const
  226. {
  227. Q_ASSERT(aRow >= 0 && aRow < 4 && aColumn >= 0 && aColumn < 4);
  228. return m[aColumn][aRow];
  229. }
  230. inline float& QMatrix4x4::operator()(int aRow, int aColumn)
  231. {
  232. Q_ASSERT(aRow >= 0 && aRow < 4 && aColumn >= 0 && aColumn < 4);
  233. flagBits = General;
  234. return m[aColumn][aRow];
  235. }
  236. #ifndef QT_NO_VECTOR4D
  237. inline QVector4D QMatrix4x4::column(int index) const
  238. {
  239. Q_ASSERT(index >= 0 && index < 4);
  240. return QVector4D(m[index][0], m[index][1], m[index][2], m[index][3]);
  241. }
  242. inline void QMatrix4x4::setColumn(int index, const QVector4D& value)
  243. {
  244. Q_ASSERT(index >= 0 && index < 4);
  245. m[index][0] = value.x();
  246. m[index][1] = value.y();
  247. m[index][2] = value.z();
  248. m[index][3] = value.w();
  249. flagBits = General;
  250. }
  251. inline QVector4D QMatrix4x4::row(int index) const
  252. {
  253. Q_ASSERT(index >= 0 && index < 4);
  254. return QVector4D(m[0][index], m[1][index], m[2][index], m[3][index]);
  255. }
  256. inline void QMatrix4x4::setRow(int index, const QVector4D& value)
  257. {
  258. Q_ASSERT(index >= 0 && index < 4);
  259. m[0][index] = value.x();
  260. m[1][index] = value.y();
  261. m[2][index] = value.z();
  262. m[3][index] = value.w();
  263. flagBits = General;
  264. }
  265. #endif
  266. Q_GUI_EXPORT QMatrix4x4 operator/(const QMatrix4x4& matrix, float divisor);
  267. inline bool QMatrix4x4::isAffine() const
  268. {
  269. return m[0][3] == 0.0f && m[1][3] == 0.0f && m[2][3] == 0.0f && m[3][3] == 1.0f;
  270. }
  271. inline bool QMatrix4x4::isIdentity() const
  272. {
  273. if (flagBits == Identity)
  274. return true;
  275. if (m[0][0] != 1.0f || m[0][1] != 0.0f || m[0][2] != 0.0f)
  276. return false;
  277. if (m[0][3] != 0.0f || m[1][0] != 0.0f || m[1][1] != 1.0f)
  278. return false;
  279. if (m[1][2] != 0.0f || m[1][3] != 0.0f || m[2][0] != 0.0f)
  280. return false;
  281. if (m[2][1] != 0.0f || m[2][2] != 1.0f || m[2][3] != 0.0f)
  282. return false;
  283. if (m[3][0] != 0.0f || m[3][1] != 0.0f || m[3][2] != 0.0f)
  284. return false;
  285. return (m[3][3] == 1.0f);
  286. }
  287. inline void QMatrix4x4::setToIdentity()
  288. {
  289. m[0][0] = 1.0f;
  290. m[0][1] = 0.0f;
  291. m[0][2] = 0.0f;
  292. m[0][3] = 0.0f;
  293. m[1][0] = 0.0f;
  294. m[1][1] = 1.0f;
  295. m[1][2] = 0.0f;
  296. m[1][3] = 0.0f;
  297. m[2][0] = 0.0f;
  298. m[2][1] = 0.0f;
  299. m[2][2] = 1.0f;
  300. m[2][3] = 0.0f;
  301. m[3][0] = 0.0f;
  302. m[3][1] = 0.0f;
  303. m[3][2] = 0.0f;
  304. m[3][3] = 1.0f;
  305. flagBits = Identity;
  306. }
  307. inline void QMatrix4x4::fill(float value)
  308. {
  309. m[0][0] = value;
  310. m[0][1] = value;
  311. m[0][2] = value;
  312. m[0][3] = value;
  313. m[1][0] = value;
  314. m[1][1] = value;
  315. m[1][2] = value;
  316. m[1][3] = value;
  317. m[2][0] = value;
  318. m[2][1] = value;
  319. m[2][2] = value;
  320. m[2][3] = value;
  321. m[3][0] = value;
  322. m[3][1] = value;
  323. m[3][2] = value;
  324. m[3][3] = value;
  325. flagBits = General;
  326. }
  327. inline QMatrix4x4& QMatrix4x4::operator+=(const QMatrix4x4& other)
  328. {
  329. m[0][0] += other.m[0][0];
  330. m[0][1] += other.m[0][1];
  331. m[0][2] += other.m[0][2];
  332. m[0][3] += other.m[0][3];
  333. m[1][0] += other.m[1][0];
  334. m[1][1] += other.m[1][1];
  335. m[1][2] += other.m[1][2];
  336. m[1][3] += other.m[1][3];
  337. m[2][0] += other.m[2][0];
  338. m[2][1] += other.m[2][1];
  339. m[2][2] += other.m[2][2];
  340. m[2][3] += other.m[2][3];
  341. m[3][0] += other.m[3][0];
  342. m[3][1] += other.m[3][1];
  343. m[3][2] += other.m[3][2];
  344. m[3][3] += other.m[3][3];
  345. flagBits = General;
  346. return *this;
  347. }
  348. inline QMatrix4x4& QMatrix4x4::operator-=(const QMatrix4x4& other)
  349. {
  350. m[0][0] -= other.m[0][0];
  351. m[0][1] -= other.m[0][1];
  352. m[0][2] -= other.m[0][2];
  353. m[0][3] -= other.m[0][3];
  354. m[1][0] -= other.m[1][0];
  355. m[1][1] -= other.m[1][1];
  356. m[1][2] -= other.m[1][2];
  357. m[1][3] -= other.m[1][3];
  358. m[2][0] -= other.m[2][0];
  359. m[2][1] -= other.m[2][1];
  360. m[2][2] -= other.m[2][2];
  361. m[2][3] -= other.m[2][3];
  362. m[3][0] -= other.m[3][0];
  363. m[3][1] -= other.m[3][1];
  364. m[3][2] -= other.m[3][2];
  365. m[3][3] -= other.m[3][3];
  366. flagBits = General;
  367. return *this;
  368. }
  369. inline QMatrix4x4& QMatrix4x4::operator*=(const QMatrix4x4& other)
  370. {
  371. flagBits |= other.flagBits;
  372. if (flagBits < Rotation2D) {
  373. m[3][0] += m[0][0] * other.m[3][0];
  374. m[3][1] += m[1][1] * other.m[3][1];
  375. m[3][2] += m[2][2] * other.m[3][2];
  376. m[0][0] *= other.m[0][0];
  377. m[1][1] *= other.m[1][1];
  378. m[2][2] *= other.m[2][2];
  379. return *this;
  380. }
  381. float m0, m1, m2;
  382. m0 = m[0][0] * other.m[0][0]
  383. + m[1][0] * other.m[0][1]
  384. + m[2][0] * other.m[0][2]
  385. + m[3][0] * other.m[0][3];
  386. m1 = m[0][0] * other.m[1][0]
  387. + m[1][0] * other.m[1][1]
  388. + m[2][0] * other.m[1][2]
  389. + m[3][0] * other.m[1][3];
  390. m2 = m[0][0] * other.m[2][0]
  391. + m[1][0] * other.m[2][1]
  392. + m[2][0] * other.m[2][2]
  393. + m[3][0] * other.m[2][3];
  394. m[3][0] = m[0][0] * other.m[3][0]
  395. + m[1][0] * other.m[3][1]
  396. + m[2][0] * other.m[3][2]
  397. + m[3][0] * other.m[3][3];
  398. m[0][0] = m0;
  399. m[1][0] = m1;
  400. m[2][0] = m2;
  401. m0 = m[0][1] * other.m[0][0]
  402. + m[1][1] * other.m[0][1]
  403. + m[2][1] * other.m[0][2]
  404. + m[3][1] * other.m[0][3];
  405. m1 = m[0][1] * other.m[1][0]
  406. + m[1][1] * other.m[1][1]
  407. + m[2][1] * other.m[1][2]
  408. + m[3][1] * other.m[1][3];
  409. m2 = m[0][1] * other.m[2][0]
  410. + m[1][1] * other.m[2][1]
  411. + m[2][1] * other.m[2][2]
  412. + m[3][1] * other.m[2][3];
  413. m[3][1] = m[0][1] * other.m[3][0]
  414. + m[1][1] * other.m[3][1]
  415. + m[2][1] * other.m[3][2]
  416. + m[3][1] * other.m[3][3];
  417. m[0][1] = m0;
  418. m[1][1] = m1;
  419. m[2][1] = m2;
  420. m0 = m[0][2] * other.m[0][0]
  421. + m[1][2] * other.m[0][1]
  422. + m[2][2] * other.m[0][2]
  423. + m[3][2] * other.m[0][3];
  424. m1 = m[0][2] * other.m[1][0]
  425. + m[1][2] * other.m[1][1]
  426. + m[2][2] * other.m[1][2]
  427. + m[3][2] * other.m[1][3];
  428. m2 = m[0][2] * other.m[2][0]
  429. + m[1][2] * other.m[2][1]
  430. + m[2][2] * other.m[2][2]
  431. + m[3][2] * other.m[2][3];
  432. m[3][2] = m[0][2] * other.m[3][0]
  433. + m[1][2] * other.m[3][1]
  434. + m[2][2] * other.m[3][2]
  435. + m[3][2] * other.m[3][3];
  436. m[0][2] = m0;
  437. m[1][2] = m1;
  438. m[2][2] = m2;
  439. m0 = m[0][3] * other.m[0][0]
  440. + m[1][3] * other.m[0][1]
  441. + m[2][3] * other.m[0][2]
  442. + m[3][3] * other.m[0][3];
  443. m1 = m[0][3] * other.m[1][0]
  444. + m[1][3] * other.m[1][1]
  445. + m[2][3] * other.m[1][2]
  446. + m[3][3] * other.m[1][3];
  447. m2 = m[0][3] * other.m[2][0]
  448. + m[1][3] * other.m[2][1]
  449. + m[2][3] * other.m[2][2]
  450. + m[3][3] * other.m[2][3];
  451. m[3][3] = m[0][3] * other.m[3][0]
  452. + m[1][3] * other.m[3][1]
  453. + m[2][3] * other.m[3][2]
  454. + m[3][3] * other.m[3][3];
  455. m[0][3] = m0;
  456. m[1][3] = m1;
  457. m[2][3] = m2;
  458. return *this;
  459. }
  460. inline QMatrix4x4& QMatrix4x4::operator*=(float factor)
  461. {
  462. m[0][0] *= factor;
  463. m[0][1] *= factor;
  464. m[0][2] *= factor;
  465. m[0][3] *= factor;
  466. m[1][0] *= factor;
  467. m[1][1] *= factor;
  468. m[1][2] *= factor;
  469. m[1][3] *= factor;
  470. m[2][0] *= factor;
  471. m[2][1] *= factor;
  472. m[2][2] *= factor;
  473. m[2][3] *= factor;
  474. m[3][0] *= factor;
  475. m[3][1] *= factor;
  476. m[3][2] *= factor;
  477. m[3][3] *= factor;
  478. flagBits = General;
  479. return *this;
  480. }
  481. inline bool QMatrix4x4::operator==(const QMatrix4x4& other) const
  482. {
  483. return m[0][0] == other.m[0][0] &&
  484. m[0][1] == other.m[0][1] &&
  485. m[0][2] == other.m[0][2] &&
  486. m[0][3] == other.m[0][3] &&
  487. m[1][0] == other.m[1][0] &&
  488. m[1][1] == other.m[1][1] &&
  489. m[1][2] == other.m[1][2] &&
  490. m[1][3] == other.m[1][3] &&
  491. m[2][0] == other.m[2][0] &&
  492. m[2][1] == other.m[2][1] &&
  493. m[2][2] == other.m[2][2] &&
  494. m[2][3] == other.m[2][3] &&
  495. m[3][0] == other.m[3][0] &&
  496. m[3][1] == other.m[3][1] &&
  497. m[3][2] == other.m[3][2] &&
  498. m[3][3] == other.m[3][3];
  499. }
  500. inline bool QMatrix4x4::operator!=(const QMatrix4x4& other) const
  501. {
  502. return m[0][0] != other.m[0][0] ||
  503. m[0][1] != other.m[0][1] ||
  504. m[0][2] != other.m[0][2] ||
  505. m[0][3] != other.m[0][3] ||
  506. m[1][0] != other.m[1][0] ||
  507. m[1][1] != other.m[1][1] ||
  508. m[1][2] != other.m[1][2] ||
  509. m[1][3] != other.m[1][3] ||
  510. m[2][0] != other.m[2][0] ||
  511. m[2][1] != other.m[2][1] ||
  512. m[2][2] != other.m[2][2] ||
  513. m[2][3] != other.m[2][3] ||
  514. m[3][0] != other.m[3][0] ||
  515. m[3][1] != other.m[3][1] ||
  516. m[3][2] != other.m[3][2] ||
  517. m[3][3] != other.m[3][3];
  518. }
  519. inline QMatrix4x4 operator+(const QMatrix4x4& m1, const QMatrix4x4& m2)
  520. {
  521. QMatrix4x4 m(1);
  522. m.m[0][0] = m1.m[0][0] + m2.m[0][0];
  523. m.m[0][1] = m1.m[0][1] + m2.m[0][1];
  524. m.m[0][2] = m1.m[0][2] + m2.m[0][2];
  525. m.m[0][3] = m1.m[0][3] + m2.m[0][3];
  526. m.m[1][0] = m1.m[1][0] + m2.m[1][0];
  527. m.m[1][1] = m1.m[1][1] + m2.m[1][1];
  528. m.m[1][2] = m1.m[1][2] + m2.m[1][2];
  529. m.m[1][3] = m1.m[1][3] + m2.m[1][3];
  530. m.m[2][0] = m1.m[2][0] + m2.m[2][0];
  531. m.m[2][1] = m1.m[2][1] + m2.m[2][1];
  532. m.m[2][2] = m1.m[2][2] + m2.m[2][2];
  533. m.m[2][3] = m1.m[2][3] + m2.m[2][3];
  534. m.m[3][0] = m1.m[3][0] + m2.m[3][0];
  535. m.m[3][1] = m1.m[3][1] + m2.m[3][1];
  536. m.m[3][2] = m1.m[3][2] + m2.m[3][2];
  537. m.m[3][3] = m1.m[3][3] + m2.m[3][3];
  538. m.flagBits = QMatrix4x4::General;
  539. return m;
  540. }
  541. inline QMatrix4x4 operator-(const QMatrix4x4& m1, const QMatrix4x4& m2)
  542. {
  543. QMatrix4x4 m(1);
  544. m.m[0][0] = m1.m[0][0] - m2.m[0][0];
  545. m.m[0][1] = m1.m[0][1] - m2.m[0][1];
  546. m.m[0][2] = m1.m[0][2] - m2.m[0][2];
  547. m.m[0][3] = m1.m[0][3] - m2.m[0][3];
  548. m.m[1][0] = m1.m[1][0] - m2.m[1][0];
  549. m.m[1][1] = m1.m[1][1] - m2.m[1][1];
  550. m.m[1][2] = m1.m[1][2] - m2.m[1][2];
  551. m.m[1][3] = m1.m[1][3] - m2.m[1][3];
  552. m.m[2][0] = m1.m[2][0] - m2.m[2][0];
  553. m.m[2][1] = m1.m[2][1] - m2.m[2][1];
  554. m.m[2][2] = m1.m[2][2] - m2.m[2][2];
  555. m.m[2][3] = m1.m[2][3] - m2.m[2][3];
  556. m.m[3][0] = m1.m[3][0] - m2.m[3][0];
  557. m.m[3][1] = m1.m[3][1] - m2.m[3][1];
  558. m.m[3][2] = m1.m[3][2] - m2.m[3][2];
  559. m.m[3][3] = m1.m[3][3] - m2.m[3][3];
  560. m.flagBits = QMatrix4x4::General;
  561. return m;
  562. }
  563. inline QMatrix4x4 operator*(const QMatrix4x4& m1, const QMatrix4x4& m2)
  564. {
  565. int flagBits = m1.flagBits | m2.flagBits;
  566. if (flagBits < QMatrix4x4::Rotation2D) {
  567. QMatrix4x4 m = m1;
  568. m.m[3][0] += m.m[0][0] * m2.m[3][0];
  569. m.m[3][1] += m.m[1][1] * m2.m[3][1];
  570. m.m[3][2] += m.m[2][2] * m2.m[3][2];
  571. m.m[0][0] *= m2.m[0][0];
  572. m.m[1][1] *= m2.m[1][1];
  573. m.m[2][2] *= m2.m[2][2];
  574. m.flagBits = flagBits;
  575. return m;
  576. }
  577. QMatrix4x4 m(1);
  578. m.m[0][0] = m1.m[0][0] * m2.m[0][0]
  579. + m1.m[1][0] * m2.m[0][1]
  580. + m1.m[2][0] * m2.m[0][2]
  581. + m1.m[3][0] * m2.m[0][3];
  582. m.m[0][1] = m1.m[0][1] * m2.m[0][0]
  583. + m1.m[1][1] * m2.m[0][1]
  584. + m1.m[2][1] * m2.m[0][2]
  585. + m1.m[3][1] * m2.m[0][3];
  586. m.m[0][2] = m1.m[0][2] * m2.m[0][0]
  587. + m1.m[1][2] * m2.m[0][1]
  588. + m1.m[2][2] * m2.m[0][2]
  589. + m1.m[3][2] * m2.m[0][3];
  590. m.m[0][3] = m1.m[0][3] * m2.m[0][0]
  591. + m1.m[1][3] * m2.m[0][1]
  592. + m1.m[2][3] * m2.m[0][2]
  593. + m1.m[3][3] * m2.m[0][3];
  594. m.m[1][0] = m1.m[0][0] * m2.m[1][0]
  595. + m1.m[1][0] * m2.m[1][1]
  596. + m1.m[2][0] * m2.m[1][2]
  597. + m1.m[3][0] * m2.m[1][3];
  598. m.m[1][1] = m1.m[0][1] * m2.m[1][0]
  599. + m1.m[1][1] * m2.m[1][1]
  600. + m1.m[2][1] * m2.m[1][2]
  601. + m1.m[3][1] * m2.m[1][3];
  602. m.m[1][2] = m1.m[0][2] * m2.m[1][0]
  603. + m1.m[1][2] * m2.m[1][1]
  604. + m1.m[2][2] * m2.m[1][2]
  605. + m1.m[3][2] * m2.m[1][3];
  606. m.m[1][3] = m1.m[0][3] * m2.m[1][0]
  607. + m1.m[1][3] * m2.m[1][1]
  608. + m1.m[2][3] * m2.m[1][2]
  609. + m1.m[3][3] * m2.m[1][3];
  610. m.m[2][0] = m1.m[0][0] * m2.m[2][0]
  611. + m1.m[1][0] * m2.m[2][1]
  612. + m1.m[2][0] * m2.m[2][2]
  613. + m1.m[3][0] * m2.m[2][3];
  614. m.m[2][1] = m1.m[0][1] * m2.m[2][0]
  615. + m1.m[1][1] * m2.m[2][1]
  616. + m1.m[2][1] * m2.m[2][2]
  617. + m1.m[3][1] * m2.m[2][3];
  618. m.m[2][2] = m1.m[0][2] * m2.m[2][0]
  619. + m1.m[1][2] * m2.m[2][1]
  620. + m1.m[2][2] * m2.m[2][2]
  621. + m1.m[3][2] * m2.m[2][3];
  622. m.m[2][3] = m1.m[0][3] * m2.m[2][0]
  623. + m1.m[1][3] * m2.m[2][1]
  624. + m1.m[2][3] * m2.m[2][2]
  625. + m1.m[3][3] * m2.m[2][3];
  626. m.m[3][0] = m1.m[0][0] * m2.m[3][0]
  627. + m1.m[1][0] * m2.m[3][1]
  628. + m1.m[2][0] * m2.m[3][2]
  629. + m1.m[3][0] * m2.m[3][3];
  630. m.m[3][1] = m1.m[0][1] * m2.m[3][0]
  631. + m1.m[1][1] * m2.m[3][1]
  632. + m1.m[2][1] * m2.m[3][2]
  633. + m1.m[3][1] * m2.m[3][3];
  634. m.m[3][2] = m1.m[0][2] * m2.m[3][0]
  635. + m1.m[1][2] * m2.m[3][1]
  636. + m1.m[2][2] * m2.m[3][2]
  637. + m1.m[3][2] * m2.m[3][3];
  638. m.m[3][3] = m1.m[0][3] * m2.m[3][0]
  639. + m1.m[1][3] * m2.m[3][1]
  640. + m1.m[2][3] * m2.m[3][2]
  641. + m1.m[3][3] * m2.m[3][3];
  642. m.flagBits = flagBits;
  643. return m;
  644. }
  645. #ifndef QT_NO_VECTOR3D
  646. inline QVector3D operator*(const QVector3D& vector, const QMatrix4x4& matrix)
  647. {
  648. float x, y, z, w;
  649. x = vector.x() * matrix.m[0][0] +
  650. vector.y() * matrix.m[0][1] +
  651. vector.z() * matrix.m[0][2] +
  652. matrix.m[0][3];
  653. y = vector.x() * matrix.m[1][0] +
  654. vector.y() * matrix.m[1][1] +
  655. vector.z() * matrix.m[1][2] +
  656. matrix.m[1][3];
  657. z = vector.x() * matrix.m[2][0] +
  658. vector.y() * matrix.m[2][1] +
  659. vector.z() * matrix.m[2][2] +
  660. matrix.m[2][3];
  661. w = vector.x() * matrix.m[3][0] +
  662. vector.y() * matrix.m[3][1] +
  663. vector.z() * matrix.m[3][2] +
  664. matrix.m[3][3];
  665. if (w == 1.0f)
  666. return QVector3D(x, y, z);
  667. else
  668. return QVector3D(x / w, y / w, z / w);
  669. }
  670. inline QVector3D operator*(const QMatrix4x4& matrix, const QVector3D& vector)
  671. {
  672. float x, y, z, w;
  673. if (matrix.flagBits == QMatrix4x4::Identity) {
  674. return vector;
  675. } else if (matrix.flagBits < QMatrix4x4::Rotation2D) {
  676. // Translation | Scale
  677. return QVector3D(vector.x() * matrix.m[0][0] + matrix.m[3][0],
  678. vector.y() * matrix.m[1][1] + matrix.m[3][1],
  679. vector.z() * matrix.m[2][2] + matrix.m[3][2]);
  680. } else if (matrix.flagBits < QMatrix4x4::Rotation) {
  681. // Translation | Scale | Rotation2D
  682. return QVector3D(vector.x() * matrix.m[0][0] + vector.y() * matrix.m[1][0] + matrix.m[3][0],
  683. vector.x() * matrix.m[0][1] + vector.y() * matrix.m[1][1] + matrix.m[3][1],
  684. vector.z() * matrix.m[2][2] + matrix.m[3][2]);
  685. } else {
  686. x = vector.x() * matrix.m[0][0] +
  687. vector.y() * matrix.m[1][0] +
  688. vector.z() * matrix.m[2][0] +
  689. matrix.m[3][0];
  690. y = vector.x() * matrix.m[0][1] +
  691. vector.y() * matrix.m[1][1] +
  692. vector.z() * matrix.m[2][1] +
  693. matrix.m[3][1];
  694. z = vector.x() * matrix.m[0][2] +
  695. vector.y() * matrix.m[1][2] +
  696. vector.z() * matrix.m[2][2] +
  697. matrix.m[3][2];
  698. w = vector.x() * matrix.m[0][3] +
  699. vector.y() * matrix.m[1][3] +
  700. vector.z() * matrix.m[2][3] +
  701. matrix.m[3][3];
  702. if (w == 1.0f)
  703. return QVector3D(x, y, z);
  704. else
  705. return QVector3D(x / w, y / w, z / w);
  706. }
  707. }
  708. #endif
  709. #ifndef QT_NO_VECTOR4D
  710. inline QVector4D operator*(const QVector4D& vector, const QMatrix4x4& matrix)
  711. {
  712. float x, y, z, w;
  713. x = vector.x() * matrix.m[0][0] +
  714. vector.y() * matrix.m[0][1] +
  715. vector.z() * matrix.m[0][2] +
  716. vector.w() * matrix.m[0][3];
  717. y = vector.x() * matrix.m[1][0] +
  718. vector.y() * matrix.m[1][1] +
  719. vector.z() * matrix.m[1][2] +
  720. vector.w() * matrix.m[1][3];
  721. z = vector.x() * matrix.m[2][0] +
  722. vector.y() * matrix.m[2][1] +
  723. vector.z() * matrix.m[2][2] +
  724. vector.w() * matrix.m[2][3];
  725. w = vector.x() * matrix.m[3][0] +
  726. vector.y() * matrix.m[3][1] +
  727. vector.z() * matrix.m[3][2] +
  728. vector.w() * matrix.m[3][3];
  729. return QVector4D(x, y, z, w);
  730. }
  731. inline QVector4D operator*(const QMatrix4x4& matrix, const QVector4D& vector)
  732. {
  733. float x, y, z, w;
  734. x = vector.x() * matrix.m[0][0] +
  735. vector.y() * matrix.m[1][0] +
  736. vector.z() * matrix.m[2][0] +
  737. vector.w() * matrix.m[3][0];
  738. y = vector.x() * matrix.m[0][1] +
  739. vector.y() * matrix.m[1][1] +
  740. vector.z() * matrix.m[2][1] +
  741. vector.w() * matrix.m[3][1];
  742. z = vector.x() * matrix.m[0][2] +
  743. vector.y() * matrix.m[1][2] +
  744. vector.z() * matrix.m[2][2] +
  745. vector.w() * matrix.m[3][2];
  746. w = vector.x() * matrix.m[0][3] +
  747. vector.y() * matrix.m[1][3] +
  748. vector.z() * matrix.m[2][3] +
  749. vector.w() * matrix.m[3][3];
  750. return QVector4D(x, y, z, w);
  751. }
  752. #endif
  753. inline QPoint operator*(const QPoint& point, const QMatrix4x4& matrix)
  754. {
  755. float xin, yin;
  756. float x, y, w;
  757. xin = point.x();
  758. yin = point.y();
  759. x = xin * matrix.m[0][0] +
  760. yin * matrix.m[0][1] +
  761. matrix.m[0][3];
  762. y = xin * matrix.m[1][0] +
  763. yin * matrix.m[1][1] +
  764. matrix.m[1][3];
  765. w = xin * matrix.m[3][0] +
  766. yin * matrix.m[3][1] +
  767. matrix.m[3][3];
  768. if (w == 1.0f)
  769. return QPoint(qRound(x), qRound(y));
  770. else
  771. return QPoint(qRound(x / w), qRound(y / w));
  772. }
  773. inline QPointF operator*(const QPointF& point, const QMatrix4x4& matrix)
  774. {
  775. float xin, yin;
  776. float x, y, w;
  777. xin = point.x();
  778. yin = point.y();
  779. x = xin * matrix.m[0][0] +
  780. yin * matrix.m[0][1] +
  781. matrix.m[0][3];
  782. y = xin * matrix.m[1][0] +
  783. yin * matrix.m[1][1] +
  784. matrix.m[1][3];
  785. w = xin * matrix.m[3][0] +
  786. yin * matrix.m[3][1] +
  787. matrix.m[3][3];
  788. if (w == 1.0f) {
  789. return QPointF(float(x), float(y));
  790. } else {
  791. return QPointF(float(x / w), float(y / w));
  792. }
  793. }
  794. inline QPoint operator*(const QMatrix4x4& matrix, const QPoint& point)
  795. {
  796. float xin, yin;
  797. float x, y, w;
  798. xin = point.x();
  799. yin = point.y();
  800. if (matrix.flagBits == QMatrix4x4::Identity) {
  801. return point;
  802. } else if (matrix.flagBits < QMatrix4x4::Rotation2D) {
  803. // Translation | Scale
  804. return QPoint(qRound(xin * matrix.m[0][0] + matrix.m[3][0]),
  805. qRound(yin * matrix.m[1][1] + matrix.m[3][1]));
  806. } else if (matrix.flagBits < QMatrix4x4::Perspective) {
  807. return QPoint(qRound(xin * matrix.m[0][0] + yin * matrix.m[1][0] + matrix.m[3][0]),
  808. qRound(xin * matrix.m[0][1] + yin * matrix.m[1][1] + matrix.m[3][1]));
  809. } else {
  810. x = xin * matrix.m[0][0] +
  811. yin * matrix.m[1][0] +
  812. matrix.m[3][0];
  813. y = xin * matrix.m[0][1] +
  814. yin * matrix.m[1][1] +
  815. matrix.m[3][1];
  816. w = xin * matrix.m[0][3] +
  817. yin * matrix.m[1][3] +
  818. matrix.m[3][3];
  819. if (w == 1.0f)
  820. return QPoint(qRound(x), qRound(y));
  821. else
  822. return QPoint(qRound(x / w), qRound(y / w));
  823. }
  824. }
  825. inline QPointF operator*(const QMatrix4x4& matrix, const QPointF& point)
  826. {
  827. float xin, yin;
  828. float x, y, w;
  829. xin = point.x();
  830. yin = point.y();
  831. if (matrix.flagBits == QMatrix4x4::Identity) {
  832. return point;
  833. } else if (matrix.flagBits < QMatrix4x4::Rotation2D) {
  834. // Translation | Scale
  835. return QPointF(xin * matrix.m[0][0] + matrix.m[3][0],
  836. yin * matrix.m[1][1] + matrix.m[3][1]);
  837. } else if (matrix.flagBits < QMatrix4x4::Perspective) {
  838. return QPointF(xin * matrix.m[0][0] + yin * matrix.m[1][0] + matrix.m[3][0],
  839. xin * matrix.m[0][1] + yin * matrix.m[1][1] + matrix.m[3][1]);
  840. } else {
  841. x = xin * matrix.m[0][0] +
  842. yin * matrix.m[1][0] +
  843. matrix.m[3][0];
  844. y = xin * matrix.m[0][1] +
  845. yin * matrix.m[1][1] +
  846. matrix.m[3][1];
  847. w = xin * matrix.m[0][3] +
  848. yin * matrix.m[1][3] +
  849. matrix.m[3][3];
  850. if (w == 1.0f) {
  851. return QPointF(float(x), float(y));
  852. } else {
  853. return QPointF(float(x / w), float(y / w));
  854. }
  855. }
  856. }
  857. inline QMatrix4x4 operator-(const QMatrix4x4& matrix)
  858. {
  859. QMatrix4x4 m(1);
  860. m.m[0][0] = -matrix.m[0][0];
  861. m.m[0][1] = -matrix.m[0][1];
  862. m.m[0][2] = -matrix.m[0][2];
  863. m.m[0][3] = -matrix.m[0][3];
  864. m.m[1][0] = -matrix.m[1][0];
  865. m.m[1][1] = -matrix.m[1][1];
  866. m.m[1][2] = -matrix.m[1][2];
  867. m.m[1][3] = -matrix.m[1][3];
  868. m.m[2][0] = -matrix.m[2][0];
  869. m.m[2][1] = -matrix.m[2][1];
  870. m.m[2][2] = -matrix.m[2][2];
  871. m.m[2][3] = -matrix.m[2][3];
  872. m.m[3][0] = -matrix.m[3][0];
  873. m.m[3][1] = -matrix.m[3][1];
  874. m.m[3][2] = -matrix.m[3][2];
  875. m.m[3][3] = -matrix.m[3][3];
  876. m.flagBits = QMatrix4x4::General;
  877. return m;
  878. }
  879. inline QMatrix4x4 operator*(float factor, const QMatrix4x4& matrix)
  880. {
  881. QMatrix4x4 m(1);
  882. m.m[0][0] = matrix.m[0][0] * factor;
  883. m.m[0][1] = matrix.m[0][1] * factor;
  884. m.m[0][2] = matrix.m[0][2] * factor;
  885. m.m[0][3] = matrix.m[0][3] * factor;
  886. m.m[1][0] = matrix.m[1][0] * factor;
  887. m.m[1][1] = matrix.m[1][1] * factor;
  888. m.m[1][2] = matrix.m[1][2] * factor;
  889. m.m[1][3] = matrix.m[1][3] * factor;
  890. m.m[2][0] = matrix.m[2][0] * factor;
  891. m.m[2][1] = matrix.m[2][1] * factor;
  892. m.m[2][2] = matrix.m[2][2] * factor;
  893. m.m[2][3] = matrix.m[2][3] * factor;
  894. m.m[3][0] = matrix.m[3][0] * factor;
  895. m.m[3][1] = matrix.m[3][1] * factor;
  896. m.m[3][2] = matrix.m[3][2] * factor;
  897. m.m[3][3] = matrix.m[3][3] * factor;
  898. m.flagBits = QMatrix4x4::General;
  899. return m;
  900. }
  901. inline QMatrix4x4 operator*(const QMatrix4x4& matrix, float factor)
  902. {
  903. QMatrix4x4 m(1);
  904. m.m[0][0] = matrix.m[0][0] * factor;
  905. m.m[0][1] = matrix.m[0][1] * factor;
  906. m.m[0][2] = matrix.m[0][2] * factor;
  907. m.m[0][3] = matrix.m[0][3] * factor;
  908. m.m[1][0] = matrix.m[1][0] * factor;
  909. m.m[1][1] = matrix.m[1][1] * factor;
  910. m.m[1][2] = matrix.m[1][2] * factor;
  911. m.m[1][3] = matrix.m[1][3] * factor;
  912. m.m[2][0] = matrix.m[2][0] * factor;
  913. m.m[2][1] = matrix.m[2][1] * factor;
  914. m.m[2][2] = matrix.m[2][2] * factor;
  915. m.m[2][3] = matrix.m[2][3] * factor;
  916. m.m[3][0] = matrix.m[3][0] * factor;
  917. m.m[3][1] = matrix.m[3][1] * factor;
  918. m.m[3][2] = matrix.m[3][2] * factor;
  919. m.m[3][3] = matrix.m[3][3] * factor;
  920. m.flagBits = QMatrix4x4::General;
  921. return m;
  922. }
  923. inline bool qFuzzyCompare(const QMatrix4x4& m1, const QMatrix4x4& m2)
  924. {
  925. return qFuzzyCompare(m1.m[0][0], m2.m[0][0]) &&
  926. qFuzzyCompare(m1.m[0][1], m2.m[0][1]) &&
  927. qFuzzyCompare(m1.m[0][2], m2.m[0][2]) &&
  928. qFuzzyCompare(m1.m[0][3], m2.m[0][3]) &&
  929. qFuzzyCompare(m1.m[1][0], m2.m[1][0]) &&
  930. qFuzzyCompare(m1.m[1][1], m2.m[1][1]) &&
  931. qFuzzyCompare(m1.m[1][2], m2.m[1][2]) &&
  932. qFuzzyCompare(m1.m[1][3], m2.m[1][3]) &&
  933. qFuzzyCompare(m1.m[2][0], m2.m[2][0]) &&
  934. qFuzzyCompare(m1.m[2][1], m2.m[2][1]) &&
  935. qFuzzyCompare(m1.m[2][2], m2.m[2][2]) &&
  936. qFuzzyCompare(m1.m[2][3], m2.m[2][3]) &&
  937. qFuzzyCompare(m1.m[3][0], m2.m[3][0]) &&
  938. qFuzzyCompare(m1.m[3][1], m2.m[3][1]) &&
  939. qFuzzyCompare(m1.m[3][2], m2.m[3][2]) &&
  940. qFuzzyCompare(m1.m[3][3], m2.m[3][3]);
  941. }
  942. inline QPoint QMatrix4x4::map(const QPoint& point) const
  943. {
  944. return *this * point;
  945. }
  946. inline QPointF QMatrix4x4::map(const QPointF& point) const
  947. {
  948. return *this * point;
  949. }
  950. #ifndef QT_NO_VECTOR3D
  951. inline QVector3D QMatrix4x4::map(const QVector3D& point) const
  952. {
  953. return *this * point;
  954. }
  955. inline QVector3D QMatrix4x4::mapVector(const QVector3D& vector) const
  956. {
  957. if (flagBits < Scale) {
  958. // Translation
  959. return vector;
  960. } else if (flagBits < Rotation2D) {
  961. // Translation | Scale
  962. return QVector3D(vector.x() * m[0][0],
  963. vector.y() * m[1][1],
  964. vector.z() * m[2][2]);
  965. } else {
  966. return QVector3D(vector.x() * m[0][0] +
  967. vector.y() * m[1][0] +
  968. vector.z() * m[2][0],
  969. vector.x() * m[0][1] +
  970. vector.y() * m[1][1] +
  971. vector.z() * m[2][1],
  972. vector.x() * m[0][2] +
  973. vector.y() * m[1][2] +
  974. vector.z() * m[2][2]);
  975. }
  976. }
  977. #endif
  978. #ifndef QT_NO_VECTOR4D
  979. inline QVector4D QMatrix4x4::map(const QVector4D& point) const
  980. {
  981. return *this * point;
  982. }
  983. #endif
  984. inline float *QMatrix4x4::data()
  985. {
  986. // We have to assume that the caller will modify the matrix elements,
  987. // so we flip it over to "General" mode.
  988. flagBits = General;
  989. return *m;
  990. }
  991. inline void QMatrix4x4::viewport(const QRectF &rect)
  992. {
  993. viewport(rect.x(), rect.y(), rect.width(), rect.height());
  994. }
  995. #ifndef QT_NO_DEBUG_STREAM
  996. Q_GUI_EXPORT QDebug operator<<(QDebug dbg, const QMatrix4x4 &m);
  997. #endif
  998. #ifndef QT_NO_DATASTREAM
  999. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QMatrix4x4 &);
  1000. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QMatrix4x4 &);
  1001. #endif
  1002. #if QT_DEPRECATED_SINCE(5, 0)
  1003. template <int N, int M>
  1004. QT_DEPRECATED QMatrix4x4 qGenericMatrixToMatrix4x4(const QGenericMatrix<N, M, float>& matrix)
  1005. {
  1006. return QMatrix4x4(matrix.constData(), N, M);
  1007. }
  1008. template <int N, int M>
  1009. QT_DEPRECATED QGenericMatrix<N, M, float> qGenericMatrixFromMatrix4x4(const QMatrix4x4& matrix)
  1010. {
  1011. QGenericMatrix<N, M, float> result;
  1012. const float *m = matrix.constData();
  1013. float *values = result.data();
  1014. for (int col = 0; col < N; ++col) {
  1015. for (int row = 0; row < M; ++row) {
  1016. if (col < 4 && row < 4)
  1017. values[col * M + row] = m[col * 4 + row];
  1018. else if (col == row)
  1019. values[col * M + row] = 1.0f;
  1020. else
  1021. values[col * M + row] = 0.0f;
  1022. }
  1023. }
  1024. return result;
  1025. }
  1026. #endif
  1027. #endif
  1028. QT_END_NAMESPACE
  1029. #endif