diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-19 13:55:59 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-19 13:55:59 -0400 |
| commit | 58ab93081715ffdc3df86eed6a0abe04f4939a76 (patch) | |
| tree | c236d5d2aa9f152fd6d1625ec97e3835dd0c5818 /src/d/actor/d_a_obj_homensmoke.cpp | |
| parent | f74a03109fd8268918f6949150deb06da5a82215 (diff) | |
More inlines
Also update dtk-template
Diffstat (limited to 'src/d/actor/d_a_obj_homensmoke.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_homensmoke.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/d/actor/d_a_obj_homensmoke.cpp b/src/d/actor/d_a_obj_homensmoke.cpp index 04cf3562..c12eb2b2 100644 --- a/src/d/actor/d_a_obj_homensmoke.cpp +++ b/src/d/actor/d_a_obj_homensmoke.cpp @@ -19,16 +19,16 @@ namespace daObjHomensmoke { cXyz forwardOffset(0.0f, 0.0f, 200.0f); mDoMtx_stack_c::transS(current.pos); mDoMtx_stack_c::transM(forwardOffset); - cMtx_ZrotM(mDoMtx_stack_c::get(), shape_angle.z); - cMtx_YrotM(mDoMtx_stack_c::get(), shape_angle.y); - cMtx_XrotM(mDoMtx_stack_c::get(), shape_angle.x); + mDoMtx_stack_c::ZrotM(shape_angle.z); + mDoMtx_stack_c::YrotM(shape_angle.y); + mDoMtx_stack_c::XrotM(shape_angle.x); mDoMtx_stack_c::transM(backOffset); mDoMtx_copy(mDoMtx_stack_c::get(), mMtx); } else { mDoMtx_stack_c::transS(current.pos); - cMtx_ZrotM(mDoMtx_stack_c::get(), shape_angle.z); - cMtx_YrotM(mDoMtx_stack_c::get(), shape_angle.y); - cMtx_XrotM(mDoMtx_stack_c::get(), shape_angle.x); + mDoMtx_stack_c::ZrotM(shape_angle.z); + mDoMtx_stack_c::YrotM(shape_angle.y); + mDoMtx_stack_c::XrotM(shape_angle.x); mDoMtx_copy(mDoMtx_stack_c::get(), mMtx); } } |
