mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-17 21:35:11 +00:00
Rename MtxF members to use the common convention (#923)
* Rename MtxF members like xy -> now_21 * Revert comments I didn't mean to commit * Rename c*/r* temps in `SkinMatrix_MtxFMtxFMult` * Rename MtxF members like now_21 -> yx
This commit is contained in:
parent
7728f75d2a
commit
430a172183
20 changed files with 683 additions and 683 deletions
|
@ -225,20 +225,20 @@ void func_80038A28(CollisionPoly* poly, f32 tx, f32 ty, f32 tz, MtxF* dest) {
|
|||
}
|
||||
}
|
||||
dest->xx = phi_f2;
|
||||
dest->xy = (-nx) * phi_f14;
|
||||
dest->xz = nx * phi_f12;
|
||||
dest->yx = nx;
|
||||
dest->yx = (-nx) * phi_f14;
|
||||
dest->zx = nx * phi_f12;
|
||||
dest->xy = nx;
|
||||
dest->yy = ny;
|
||||
dest->yz = nz;
|
||||
dest->zy = phi_f12;
|
||||
dest->zy = nz;
|
||||
dest->yz = phi_f12;
|
||||
dest->zz = phi_f14;
|
||||
dest->xw = 0.0f;
|
||||
dest->yw = 0.0f;
|
||||
dest->zx = 0.0f;
|
||||
dest->zw = 0.0f;
|
||||
dest->wx = tx;
|
||||
dest->wy = ty;
|
||||
dest->wz = tz;
|
||||
dest->wx = 0.0f;
|
||||
dest->wy = 0.0f;
|
||||
dest->xz = 0.0f;
|
||||
dest->wz = 0.0f;
|
||||
dest->xw = tx;
|
||||
dest->yw = ty;
|
||||
dest->zw = tz;
|
||||
dest->ww = 1.0f;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue