Home
last modified time | relevance | path

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

/CTR-SDK-4.2.8-20130828/include/nn/math/inline/
Dmath_Matrix44.ipp27 MTX44FrustumPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot)
30 MTX44Pivot( pOut, pivot );
59 pivot
64 MTX44Pivot( MTX44* pOut, PivotDirection pivot )
85 if ( pivot == PIVOT_NONE )
90 f32 sin = PIVOT_ROTATION_SIN_COS[ pivot ][ 0 ];
91 f32 cos = PIVOT_ROTATION_SIN_COS[ pivot ][ 1 ];
164 MTX44OrthoPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot)
167 MTX44Pivot( pOut, pivot );
173 MTX44PerspectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot)
[all …]
/CTR-SDK-4.2.8-20130828/include/nn/math/
Dmath_Matrix44.h104 …tumPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
243 …thoPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
278 …ctivePivotDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE );
293 …ectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
316 NN_FORCE_INLINE MTX44* MTX44Pivot( MTX44* pOut, PivotDirection pivot );
716 …self_type& SetupFrustum(f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NON…
718 return *MTX44FrustumPivot(this, l, r, b, t, n, f, pivot);
732 … self_type& SetupOrtho(f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE)
734 return *MTX44OrthoPivot(this, l, r, b, t, n, f, pivot);
745 …self_type& SetupPerspective(f32 fovyRad, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NO…
[all …]
/CTR-SDK-4.2.8-20130828/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-4.2.8-20130828/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-4.2.8-20130828/include/nn/math/ARMv6/inline/
Dmath_Matrix44.ipp505 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 …]