Sync classref with current source

This commit is contained in:
Rémi Verschelde
2019-07-02 14:03:23 +02:00
parent 5402f28f59
commit a203daa272
397 changed files with 21934 additions and 16529 deletions
+19 -7
View File
@@ -17,13 +17,13 @@ Brief Description
Properties
----------
+-------------------------------+--------------------------------------------------+
| :ref:`Vector2<class_Vector2>` | :ref:`origin<class_Transform2D_property_origin>` |
+-------------------------------+--------------------------------------------------+
| :ref:`Vector2<class_Vector2>` | :ref:`x<class_Transform2D_property_x>` |
+-------------------------------+--------------------------------------------------+
| :ref:`Vector2<class_Vector2>` | :ref:`y<class_Transform2D_property_y>` |
+-------------------------------+--------------------------------------------------+
+-------------------------------+--------------------------------------------------+-----------------+
| :ref:`Vector2<class_Vector2>` | :ref:`origin<class_Transform2D_property_origin>` | Vector2( 0, 0 ) |
+-------------------------------+--------------------------------------------------+-----------------+
| :ref:`Vector2<class_Vector2>` | :ref:`x<class_Transform2D_property_x>` | Vector2( 1, 0 ) |
+-------------------------------+--------------------------------------------------+-----------------+
| :ref:`Vector2<class_Vector2>` | :ref:`y<class_Transform2D_property_y>` | Vector2( 0, 1 ) |
+-------------------------------+--------------------------------------------------+-----------------+
Methods
-------
@@ -91,18 +91,30 @@ Property Descriptions
- :ref:`Vector2<class_Vector2>` **origin**
+-----------+-----------------+
| *Default* | Vector2( 0, 0 ) |
+-----------+-----------------+
The transform's translation offset.
.. _class_Transform2D_property_x:
- :ref:`Vector2<class_Vector2>` **x**
+-----------+-----------------+
| *Default* | Vector2( 1, 0 ) |
+-----------+-----------------+
The X axis of 2×2 basis matrix containing 2 :ref:`Vector2<class_Vector2>`\ s as its columns: X axis and Y axis. These vectors can be interpreted as the basis vectors of local coordinate system traveling with the object.
.. _class_Transform2D_property_y:
- :ref:`Vector2<class_Vector2>` **y**
+-----------+-----------------+
| *Default* | Vector2( 0, 1 ) |
+-----------+-----------------+
The Y axis of 2×2 basis matrix containing 2 :ref:`Vector2<class_Vector2>`\ s as its columns: X axis and Y axis. These vectors can be interpreted as the basis vectors of local coordinate system traveling with the object.
Method Descriptions