Home
last modified time | relevance | path

Searched refs:Pmin (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-0.14.4/sources/libraries/math/
Dmath_Geometry.cpp47 if (Pmin.x > Pmax.x) in Normalize()
48 ::std::swap(Pmin.x, Pmax.x); in Normalize()
49 if (Pmin.y > Pmax.y) in Normalize()
50 ::std::swap(Pmin.y, Pmax.y); in Normalize()
51 if (Pmin.z > Pmax.z) in Normalize()
52 ::std::swap(Pmin.z, Pmax.z); in Normalize()
58 Pmin = arrayPoint[0]; in Set()
63 if (arrayPoint[i].x < Pmin.x) in Set()
64 Pmin.x = arrayPoint[i].x; in Set()
68 if (arrayPoint[i].y < Pmin.y) in Set()
[all …]
/CTR-SDK-0.14.4/include/nn/math/
Dmath_Geometry.h280 : Pmin(p), Pmax(p + 3) in Pmin() function
283 : Pmin(min), Pmax(max) in Pmin() function
286 operator f32*() { return &Pmin.x; }
287 operator const f32*() const { return &Pmin.x; }
288 bool operator==(const self_type& rhs) const { return Pmin == rhs.Pmin && Pmax == rhs.Pmax; }
289 bool operator!=(const self_type& rhs) const { return Pmin != rhs.Pmin || Pmax != rhs.Pmax; }
295 VEC3 Pmin;