Searched refs:Pmax (Results 1 – 2 of 2) sorted by relevance
47 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()59 Pmax = arrayPoint[0]; in Set()65 else if (arrayPoint[i].x > Pmax.x) in Set()66 Pmax.x = arrayPoint[i].x; in Set()70 else if (arrayPoint[i].y > Pmax.y) in Set()[all …]
280 : Pmin(p), Pmax(p + 3) in Pmin()283 : Pmin(min), Pmax(max) in Pmin()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; }296 VEC3 Pmax; member