Home
last modified time | relevance | path

Searched refs:S (Results 1 – 6 of 6) sorted by relevance

/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/math/
Dmath_Geometry.h91 void Set(const SEGMENT3* S);
155 LINE3::Set(const SEGMENT3* S) in Set() argument
157 P = S->P0; in Set()
158 VEC3Sub(&d, &S->P1, &S->P0); in Set()
253 CAPSULE(const f32* p) : S(p), r(*(p + 6)) {} in CAPSULE()
254 CAPSULE(const SEGMENT3& S_, f32 r_) : S(S_), r(r_) {} in CAPSULE()
255 CAPSULE(const VEC3& P0, const VEC3& P1, f32 r_) : S(P0, P1), r(r_) {} in CAPSULE()
257 operator f32*() { return &S.P0.x; }
258 operator const f32*() const { return &S.P0.x; }
259 bool operator==(const self_type& rhs) const { return S == rhs.S && r == rhs.r; }
[all …]
Dmath_Utility.h29 template <typename T, typename U, typename S>
30 inline S Max(T a, U b) in Max()
41 template <typename T, typename U, typename S>
42 inline S Min(T a, U b) in Min()
53 template <typename T, typename U, typename R, typename S>
54 inline S Max(T a, U b, R c) in Max()
65 template <typename T, typename U, typename R, typename S>
66 inline S Min(T a, U b, R c) in Min()
Dmath_Matrix44.h1041 inline MTX44* MTX44Scale(MTX44* pOut, const VEC3& S) { return MTX44Scale(pOut, &S); } in MTX44Scale() argument
1042 … MTX44MultScale(MTX44* pOut, const MTX44& M, const VEC3& S) { return MTX44MultScale(pOut, &M, &S);… in MTX44MultScale() argument
1043 …ine MTX44* MTX44MultScale(MTX44* pOut, const VEC3& S, const MTX44& M) { return MTX44MultScale(pOut… in MTX44MultScale() argument
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/sources/libraries/math/
Dmath_Geometry.cpp280 DistSqPoint3ToSegment3(const VEC3* P, const SEGMENT3* S, f32* t) in DistSqPoint3ToSegment3() argument
285 L.Set(S); in DistSqPoint3ToSegment3()
287 f32 P0P1 = FSqrt((S->P0 - S->P1).LenSq()); in DistSqPoint3ToSegment3()
296 VEC3Sub(&vec, P, &S->P0); in DistSqPoint3ToSegment3()
305 VEC3Sub(&vec, P, &S->P1); in DistSqPoint3ToSegment3()
335 DistSqSphereToPlane(const SPHERE* S, const PLANE* J) in DistSqSphereToPlane() argument
337 f32 distance = J->Test(S->C); in DistSqSphereToPlane()
338 if (distance > S->r) in DistSqSphereToPlane()
339 return (distance - S->r) * (distance - S->r); in DistSqSphereToPlane()
340 else if (distance < -S->r) in DistSqSphereToPlane()
[all …]
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/math/inline/
Dmath_Matrix34.ipp210 @param[in] scaleS S軸方向のスケール値です。
212 @param[in] translateS S軸方向の移動値です。
252 @param[in] scaleS S軸方向のスケール値です。
254 @param[in] translateS S軸方向の移動値です。
297 @param[in] scaleS S軸方向のスケール値です。
299 @param[in] translateS S軸方向の移動値です。
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/sources/libraries/rdt/CTR/
Drdt_Utility.h101 struct S{ in Align() struct
106 LOG("offset: %d\n", offsetof(S, t)); in Align()