Instructions on how to map certain math constants

This commit is contained in:
Henrique Gemignani Passos Lima 2022-10-02 18:15:04 +03:00
parent f40c4e6555
commit 1a2fe4974f
No known key found for this signature in database
GPG Key ID: E224F951761145F8
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: