Home
last modified time | relevance | path

Searched refs:pOut (Results 1 – 8 of 8) sorted by relevance

/NW4C-1.3.3/include/nw/math/inline/
Dmath_Matrix44.ipp44 @param[out] pOut 計算結果を受け取るバッファへのポインタ。
51 @return pOut を返します。
54 MTX44TextureMatrixForMaya(MTX44* pOut,
59 NW_NULL_ASSERT(pOut);
65 pOut->m[0][0] = scaleS * rotateCos;
66 pOut->m[0][1] = -scaleS * rotateSin;
67 pOut->m[0][3] = scaleS * ( 0.5f * rotateSin - 0.5f * rotateCos + 0.5f - translateS);
69 pOut->m[1][0] = scaleT * rotateSin;
70 pOut->m[1][1] = scaleT * rotateCos;
71 pOut->m[1][3] = scaleT * (-0.5f * rotateSin - 0.5f * rotateCos + 0.5f - translateT);
[all …]
Dmath_Matrix34.ipp25 @param[out] pOut 計算結果を受け取るバッファへのポインタ。
30 @return pOut を返します。
34 nw::math::MTX34* pOut, const nw::math::VEC3* pCamPos, f32 twist, const nw::math::VEC3* pTarget)
38 NW_NULL_ASSERT(pOut);
42 f32 (*const m)[4] = pOut->m;
125 return pOut;
131 @param[out] pOut 計算結果を受け取るバッファへのポインタ。
135 @return pOut を返します。
139 nw::math::MTX34* pOut, const nw::math::VEC3* pCamPos, const nw::math::VEC3* pCamRotate)
143 NW_NULL_ASSERT(pOut);
[all …]
/NW4C-1.3.3/sources/libraries/lyt/
Dlyt_Suppliment.cpp21 nw::math::MTX44* nw::lyt::internal::MTX44Transpose(nw::math::MTX44* pOut, const nw::math::MTX34* pS… in MTX44Transpose() argument
23 NW_NULL_ASSERT(pOut); in MTX44Transpose()
26 *pOut = math::MTX44( in MTX44Transpose()
32 return pOut; in MTX44Transpose()
37 nw::math::MTX44* pOut, in MTX44Mult() argument
41 NW_NULL_ASSERT(pOut); in MTX44Mult()
64 *pOut = tmp; in MTX44Mult()
66 return pOut; in MTX44Mult()
/NW4C-1.3.3/include/nw/math/
Dmath_Matrix34.h27 NW_MATH_INLINE MTX34* MTX34LookAtRad(MTX34* pOut, const VEC3* pCamPos, f32 twist, const VEC3* pTarg…
28 NW_MATH_INLINE MTX34* MTX34CameraRotateRad(MTX34* pOut, const VEC3* pCamPos, const VEC3* pCamRotate…
29 NW_MATH_INLINE VEC3* MTX34DecomposeToColumnScale(VEC3* pOut, const MTX34* pM);
30 NW_MATH_INLINE VEC3* MTX34DecomposeToRowScale(VEC3* pOut, const MTX34* pM);
Dmath_Matrix44.h27 MTX44* pOut, float scaleS, float scaleT, float rotate, float translateS, float translateT);
29 MTX44* pOut, float scaleS, float scaleT, float rotate, float translateS, float translateT);
31 MTX44* pOut, float scaleS, float scaleT, float rotate, float translateS, float translateT);
/NW4C-1.3.3/include/nw/lyt/
Dlyt_Supplement.h28 math::MTX44* MTX44Transpose(math::MTX44* pOut, const math::MTX34* pSrc);
29 math::MTX44* MTX44Mult(math::MTX44* pOut, const math::MTX34* p1, const math::MTX44* p2);
/NW4C-1.3.3/sources/libraries/gfx/
Dgfx_MaterialState.cpp28 CreateMatrixForLinearShadowMapTexture(nn::math::Matrix34* pOut, f32 coeff, f32 nearp, f32 farp) in CreateMatrixForLinearShadowMapTexture() argument
30 f32 (*const m)[4] = pOut->m; in CreateMatrixForLinearShadowMapTexture()
48 return pOut; in CreateMatrixForLinearShadowMapTexture()
/NW4C-1.3.3/include/nw/gfx/
Dgfx_MaterialState.h44 CreateMatrixForLinearShadowMapTexture(nn::math::Matrix34* pOut, f32 coeff, f32 nearp, f32 farp);