mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-03 06:24:30 +00:00
Document undocumented matrix functions (#955)
* Document `func_800D1694` as `Matrix_TranslateRotateYXZ` * Document `func_800D1FD4` as `Matrix_ReplaceRotation` * Cleanup `Matrix_RotateAxis` * Document `func_800A7EC0` as `SkinMatrix_SetRotateAxis` * Document `func_800D2A34` and `func_800D2A98` as `Matrix_SetTranslateScaleMtx`(`F`) * Document mostly unused functions at the end of `sys_matrix.c` * Add in-use renamed functions to `namefixer.py` * Add `Matrix_SetTranslateScaleMtx2` to `namefixer.py` * Run formatter * Fix namefixer.py mistake from #952 * Format clang-11.1 * Fix `Matrix_TranslateRotateYXZ` wrongly documented, it actually is `Matrix_SetTranslateRotateYXZ` * VS Code is stellar at refactoring (no) * Run formatter * Come on VS Code * Improve `Matrix_ReplaceRotation` docs * Fix typo * Fix namefixer.py
This commit is contained in:
parent
0b8edc21c0
commit
b1d3844325
63 changed files with 403 additions and 374 deletions
|
@ -157,9 +157,17 @@ wordReplace = {
|
|||
"ACTIVE_CAM": "GET_ACTIVE_CAM(globalCtx)",
|
||||
"SkinMatrix_SetRotateRPY": "SkinMatrix_SetRotateZYX",
|
||||
"SkinMatrix_SetScaleRotateYRPTranslate": "SkinMatrix_SetScaleRotateYXZTranslate",
|
||||
"SkinMatrix_SetScaleRotateYXZTranslate": "SkinMatrix_SetTranslateRotateYXZScale",
|
||||
"SkinMatrix_SetRotateRPYTranslate": "SkinMatrix_SetRotateZYXTranslate",
|
||||
"SkinMatrix_SetRotateZYXTranslate": "SkinMatrix_SetTranslateRotateZYX",
|
||||
"Matrix_RotateRPY": "Matrix_RotateZYX",
|
||||
"Matrix_JointPosition": "Matrix_TranslateRotateZYX",
|
||||
"func_800D1694": "Matrix_SetTranslateRotateYXZ",
|
||||
"func_800D1FD4": "Matrix_ReplaceRotation",
|
||||
"func_800A7EC0": "SkinMatrix_SetRotateAxis",
|
||||
"func_800D2A34": "Matrix_SetTranslateUniformScaleMtxF",
|
||||
"func_800D2A98": "Matrix_SetTranslateUniformScaleMtx",
|
||||
"func_800D2CEC": "Matrix_SetTranslateScaleMtx2",
|
||||
}
|
||||
|
||||
# [a-zA-Z0-9_]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue