Home
last modified time | relevance | path

Searched refs:a2 (Results 1 – 4 of 4) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/ARMv6/
Dmath_Arithmetic.h60 f32 a2 = SS - 2.f * b2; in HermiteC() local
62 return v0 - a2 * v0 + a2 * v1 + b1 * t0 + b2 * t1; in HermiteC()
71 f32 a2; in HermiteC_FAST() local
77 a2 = SS - 2.f * b2; in HermiteC_FAST()
79 return v0 - a2 * v0 + a2 * v1 + b1 * t0 + b2 * t1; in HermiteC_FAST()
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/math/
Dmath_Arithmetic.cpp519 f32 a2 = tt * s * 3.f; in Bezier() local
523 return a1*p1 + a2*p2 + a3*p3 + a4*p4; in Bezier()
Dmath_Geometry.cpp1578 MergeAABB(AABB* a2, const AABB* a0, const AABB* a1) in MergeAABB() argument
1580 a2->Pmin.x = ::std::min(a0->Pmin.x, a1->Pmin.x); in MergeAABB()
1581 a2->Pmin.y = ::std::min(a0->Pmin.y, a1->Pmin.y); in MergeAABB()
1582 a2->Pmin.z = ::std::min(a0->Pmin.z, a1->Pmin.z); in MergeAABB()
1584 a2->Pmax.x = ::std::max(a0->Pmax.x, a1->Pmax.x); in MergeAABB()
1585 a2->Pmax.y = ::std::max(a0->Pmax.y, a1->Pmax.y); in MergeAABB()
1586 a2->Pmax.z = ::std::max(a0->Pmax.z, a1->Pmax.z); in MergeAABB()
1588 return a2; in MergeAABB()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Geometry.h520 AABB* MergeAABB(AABB* a2, const AABB* a0, const AABB* a1);