Instructions on how to map certain math constants

Former-commit-id: 1a2fe4974f
This commit is contained in:
Henrique Gemignani Passos Lima 2022-10-02 18:15:04 +03:00
parent 00375b9c6a
commit 8d294a2801
1 changed files with 6 additions and 0 deletions

View File

@ -61,6 +61,12 @@ Metaforce -> decomp
- `std::max` -> `rstl::max_val`
- `std::clamp` -> `CMath::Clamp` (depends on context)
### Converting Vector / Transforms
Metaforce -> decomp
- `zeus::CTransform::frontVector()` -> `CTransform4f::GetForward()`
- `zeus::skForward` -> `CVector3f::Forward`
### Class definitions & constructors
Metaforce often uses default values inside of class definitions, like the ` = false` below: