Skip to content

Matrix4x4

Qt Base Class: QMatrix4x4

Signature: QMatrix4x4(self) -> None QMatrix4x4(self, 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: float) -> None QMatrix4x4(self, transform: PySide6.QtGui.QTransform) -> None QMatrix4x4(self, values: Iterable) -> None

Base classes

Name Children Inherits
QMatrix4x4
PySide6.QtGui
QMatrix4x4(self) -> None

⋔ Inheritance diagram

graph TD
  1473245625584["gui.Matrix4x4"]
  1473300100912["QtGui.QMatrix4x4"]
  1473291690208["Shiboken.Object"]
  140713234304496["builtins.object"]
  1473300100912 --> 1473245625584
  1473291690208 --> 1473300100912
  140713234304496 --> 1473291690208

🛈 DocStrings

Bases: QMatrix4x4

Represents a 4x4 transformation matrix in 3D space.

Source code in prettyqt\gui\matrix4x4.py
class Matrix4x4(QtGui.QMatrix4x4):
    """Represents a 4x4 transformation matrix in 3D space."""