Sync classref with current source

This commit is contained in:
Rémi Verschelde
2019-01-07 10:08:00 +01:00
parent 756bef81e1
commit 4f5d503b25
61 changed files with 632 additions and 301 deletions

View File

@@ -12,7 +12,7 @@ PoolVector3Array
Brief Description
-----------------
An Array of Vector3.
A pooled :ref:`Array<class_Array>` of :ref:`Vector3<class_Vector3>`.
Methods
-------
@@ -42,7 +42,7 @@ Methods
Description
-----------
An Array specifically designed to hold Vector3. Note that this type is passed by value and not by reference.
An :ref:`Array<class_Array>` specifically designed to hold :ref:`Vector3<class_Vector3>`. Optimized for memory usage, does not fragment the memory. Note that this type is passed by value and not by reference.
Method Descriptions
-------------------
@@ -51,7 +51,7 @@ Method Descriptions
- :ref:`PoolVector3Array<class_PoolVector3Array>` **PoolVector3Array** **(** :ref:`Array<class_Array>` from **)**
Construct a new PoolVector3Array. Optionally, you can pass in an Array that will be converted.
Construct a new ``PoolVector3Array``. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
.. _class_PoolVector3Array_append:
@@ -63,13 +63,13 @@ Append an element at the end of the array (alias of :ref:`push_back<class_PoolVe
- void **append_array** **(** :ref:`PoolVector3Array<class_PoolVector3Array>` array **)**
Append an ``PoolVector3Array`` at the end of this array.
Append a ``PoolVector3Array`` at the end of this array.
.. _class_PoolVector3Array_insert:
- :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` idx, :ref:`Vector3<class_Vector3>` vector3 **)**
Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()).
Insert a new element at a given position in the array. The position must be valid, or at the end of the array (``idx == size()``).
.. _class_PoolVector3Array_invert: