Обновление документации по векторам и кватернионам
This commit is contained in:
parent
2fd2578bb3
commit
460fe94830
20 changed files with 237 additions and 138 deletions
|
|
@ -1,19 +1,19 @@
|
|||
# Resetting the state of a 3D vector
|
||||
|
||||
[Ðóññêàÿ âåðñèÿ / Russian version](reset-rus.md)
|
||||
[Русская версия / Russian version](reset-rus.md)
|
||||
|
||||
These functions set all coordinates of 3D vectors to 0.
|
||||
|
||||
Function for **BGC_FP32_Vector3**:
|
||||
|
||||
```c
|
||||
inline void bgc_fp32_vector3_reset(BGC_FP32_Vector3* vector);
|
||||
inline void bgc_fp32_vector3_reset(BGC_FP32_Vector3* const vector);
|
||||
```
|
||||
|
||||
Function for **BGC_FP64_Vector3**:
|
||||
|
||||
```c
|
||||
inline void bgc_fp64_vector3_reset(BGC_FP64_Vector3* vector);
|
||||
inline void bgc_fp64_vector3_reset(BGC_FP64_Vector3* const vector);
|
||||
```
|
||||
|
||||
Each of these functions is equivalent to the following lines of code:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue