Home
last modified time | relevance | path

Searched refs:pivot (Results 1 – 5 of 5) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/inline/
Dmath_Matrix44.ipp123 pivot
128 MTX44Pivot( MTX44* pOut, PivotDirection pivot )
149 if ( pivot == PIVOT_NONE )
154 f32 sin = PIVOT_ROTATION_SIN_COS[ pivot ][ 0 ];
155 f32 cos = PIVOT_ROTATION_SIN_COS[ pivot ][ 1 ];
207 @param[in] pivot 画面の回転方向
212 MTX44FrustumPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot)
215 MTX44Pivot( pOut, pivot );
231 @param[in] pivot 画面の回転方向
236 MTX44OrthoPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot)
[all …]
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Matrix44.h84 …tumPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
85 …thoPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
86 …ectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
108 NN_FORCE_INLINE MTX44* MTX44Pivot( MTX44* pOut, PivotDirection pivot );
153 MTX44PerspectivePivotDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot = PI…
155 return MTX44PerspectivePivotRad(pOut, NN_MATH_DEG_TO_RAD(fovy), aspect, n, f, pivot);
443 …self_type& SetupFrustum(f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NON…
445 return *MTX44FrustumPivot(this, l, r, b, t, n, f, pivot);
459 … self_type& SetupOrtho(f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE)
461 return *MTX44OrthoPivot(this, l, r, b, t, n, f, pivot);
[all …]
/CTR-SDK-1.0.0/CTR_SDK/include/nn/ulcd/CTR/
Dulcd_StereoCamera.h150 … const nn::math::PivotDirection pivot = nn::math::PIVOT_UPSIDE_TO_TOP);
168 … const nn::math::PivotDirection pivot = nn::math::PIVOT_UPSIDE_TO_TOP);
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/ARMv6/
Dmath_Matrix44.h50 inline MTX44* MTX44PivotC( MTX44* pOut, PivotDirection pivot );
51 inline MTX44* MTX44PivotC_FAST( MTX44* pOut, PivotDirection pivot );
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/ARMv6/inline/
Dmath_Matrix44.ipp506 pivot
511 MTX44PivotC( MTX44* pOut, PivotDirection pivot )
532 if ( pivot == PIVOT_NONE )
537 f32 sin = PIVOT_ROTATION_SIN_COS[ pivot ][ 0 ];
538 f32 cos = PIVOT_ROTATION_SIN_COS[ pivot ][ 1 ];
577 MTX44PivotC_FAST( MTX44* pOut, PivotDirection pivot )
581 if ( ( pivot == PIVOT_NONE ) || ( pivot == PIVOT_UPSIDE_TO_LEFT ) )
583 if ( ( pivot == PIVOT_NONE ) || ( pivot == PIVOT_UPSIDE_TO_TOP ) )
590 if ( pivot == PIVOT_UPSIDE_TO_RIGHT )
592 if ( pivot == PIVOT_UPSIDE_TO_BOTTOM )
[all …]