classref: Sync with current master branch (46a568e0a)

This commit is contained in:
Rémi Verschelde
2022-08-31 15:18:54 +02:00
parent b08b95d4f5
commit 465dd176b6
378 changed files with 17124 additions and 13692 deletions

View File

@@ -15,26 +15,28 @@ Projection
Properties
----------
+-------------------------------+---------------------------------------+----------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`w<class_Projection_property_w>` | ``Vector4(0, 0, 0)`` |
+-------------------------------+---------------------------------------+----------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`x<class_Projection_property_x>` | ``Vector4(1, 0, 0)`` |
+-------------------------------+---------------------------------------+----------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`y<class_Projection_property_y>` | ``Vector4(0, 1, 0)`` |
+-------------------------------+---------------------------------------+----------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`z<class_Projection_property_z>` | ``Vector4(0, 0, 1)`` |
+-------------------------------+---------------------------------------+----------------------+
+-------------------------------+---------------------------------------+-------------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`w<class_Projection_property_w>` | ``Vector4(0, 0, 0, 1)`` |
+-------------------------------+---------------------------------------+-------------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`x<class_Projection_property_x>` | ``Vector4(1, 0, 0, 0)`` |
+-------------------------------+---------------------------------------+-------------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`y<class_Projection_property_y>` | ``Vector4(0, 1, 0, 0)`` |
+-------------------------------+---------------------------------------+-------------------------+
| :ref:`Vector4<class_Vector4>` | :ref:`z<class_Projection_property_z>` | ``Vector4(0, 0, 1, 0)`` |
+-------------------------------+---------------------------------------+-------------------------+
Constructors
------------
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| :ref:`Projection<class_Projection>` | :ref:`Projection<class_Projection_constructor_Projection>` **(** **)** |
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| :ref:`Projection<class_Projection>` | :ref:`Projection<class_Projection_constructor_Projection>` **(** :ref:`Projection<class_Projection>` from **)** |
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| :ref:`Projection<class_Projection>` | :ref:`Projection<class_Projection_constructor_Projection>` **(** :ref:`Transform3D<class_Transform3D>` from **)** |
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------+
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| :ref:`Projection<class_Projection>` | :ref:`Projection<class_Projection_constructor_Projection>` **(** **)** |
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| :ref:`Projection<class_Projection>` | :ref:`Projection<class_Projection_constructor_Projection>` **(** :ref:`Projection<class_Projection>` from **)** |
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| :ref:`Projection<class_Projection>` | :ref:`Projection<class_Projection_constructor_Projection>` **(** :ref:`Transform3D<class_Transform3D>` from **)** |
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| :ref:`Projection<class_Projection>` | :ref:`Projection<class_Projection_constructor_Projection>` **(** :ref:`Vector4<class_Vector4>` x_axis, :ref:`Vector4<class_Vector4>` y_axis, :ref:`Vector4<class_Vector4>` z_axis, :ref:`Vector4<class_Vector4>` w_axis **)** |
+-------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Methods
-------
@@ -150,9 +152,9 @@ Property Descriptions
- :ref:`Vector4<class_Vector4>` **w**
+-----------+----------------------+
| *Default* | ``Vector4(0, 0, 0)`` |
+-----------+----------------------+
+-----------+-------------------------+
| *Default* | ``Vector4(0, 0, 0, 1)`` |
+-----------+-------------------------+
----
@@ -160,9 +162,9 @@ Property Descriptions
- :ref:`Vector4<class_Vector4>` **x**
+-----------+----------------------+
| *Default* | ``Vector4(1, 0, 0)`` |
+-----------+----------------------+
+-----------+-------------------------+
| *Default* | ``Vector4(1, 0, 0, 0)`` |
+-----------+-------------------------+
----
@@ -170,9 +172,9 @@ Property Descriptions
- :ref:`Vector4<class_Vector4>` **y**
+-----------+----------------------+
| *Default* | ``Vector4(0, 1, 0)`` |
+-----------+----------------------+
+-----------+-------------------------+
| *Default* | ``Vector4(0, 1, 0, 0)`` |
+-----------+-------------------------+
----
@@ -180,9 +182,9 @@ Property Descriptions
- :ref:`Vector4<class_Vector4>` **z**
+-----------+----------------------+
| *Default* | ``Vector4(0, 0, 1)`` |
+-----------+----------------------+
+-----------+-------------------------+
| *Default* | ``Vector4(0, 0, 1, 0)`` |
+-----------+-------------------------+
Constructor Descriptions
------------------------
@@ -199,6 +201,12 @@ Constructor Descriptions
- :ref:`Projection<class_Projection>` **Projection** **(** :ref:`Transform3D<class_Transform3D>` from **)**
----
- :ref:`Projection<class_Projection>` **Projection** **(** :ref:`Vector4<class_Vector4>` x_axis, :ref:`Vector4<class_Vector4>` y_axis, :ref:`Vector4<class_Vector4>` z_axis, :ref:`Vector4<class_Vector4>` w_axis **)**
Constructs a Projection from four :ref:`Vector4<class_Vector4>` values (matrix columns).
Method Descriptions
-------------------