X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmath%2FSGVec4.hxx;h=f854274dd37bbae282d665665f8062897112ab48;hb=f7c6a5bfa2140c1d5ef54f3212067cd286e525f1;hp=50b138c9eb0e5c0668f81dee9c2aed6e479951e5;hpb=84dd54b33a6d8b35e57c32194b025f79245f35c4;p=simgear.git diff --git a/simgear/math/SGVec4.hxx b/simgear/math/SGVec4.hxx index 50b138c9..f854274d 100644 --- a/simgear/math/SGVec4.hxx +++ b/simgear/math/SGVec4.hxx @@ -96,6 +96,8 @@ public: { data()[0] = d[0]; data()[1] = d[1]; data()[2] = d[2]; data()[3] = d[3]; } explicit SGVec4(const osg::Vec4d& d) { data()[0] = d[0]; data()[1] = d[1]; data()[2] = d[2]; data()[3] = d[3]; } + explicit SGVec4(const SGVec3& v3, const T& v4 = 0) + { data()[0] = v3[0]; data()[1] = v3[1]; data()[2] = v3[2]; data()[3] = v4; } /// Access by index, the index is unchecked @@ -221,6 +223,70 @@ SGVec4 operator*(const SGVec4& v, S s) { return SGVec4(s*v(0), s*v(1), s*v(2), s*v(3)); } +/// component wise min +template +inline +SGVec4 +min(const SGVec4& v1, const SGVec4& v2) +{ + return SGVec4(SGMisc::min(v1(0), v2(0)), + SGMisc::min(v1(1), v2(1)), + SGMisc::min(v1(2), v2(2)), + SGMisc::min(v1(3), v2(3))); +} +template +inline +SGVec4 +min(const SGVec4& v, S s) +{ + return SGVec4(SGMisc::min(s, v(0)), + SGMisc::min(s, v(1)), + SGMisc::min(s, v(2)), + SGMisc::min(s, v(3))); +} +template +inline +SGVec4 +min(S s, const SGVec4& v) +{ + return SGVec4(SGMisc::min(s, v(0)), + SGMisc::min(s, v(1)), + SGMisc::min(s, v(2)), + SGMisc::min(s, v(3))); +} + +/// component wise max +template +inline +SGVec4 +max(const SGVec4& v1, const SGVec4& v2) +{ + return SGVec4(SGMisc::max(v1(0), v2(0)), + SGMisc::max(v1(1), v2(1)), + SGMisc::max(v1(2), v2(2)), + SGMisc::max(v1(3), v2(3))); +} +template +inline +SGVec4 +max(const SGVec4& v, S s) +{ + return SGVec4(SGMisc::max(s, v(0)), + SGMisc::max(s, v(1)), + SGMisc::max(s, v(2)), + SGMisc::max(s, v(3))); +} +template +inline +SGVec4 +max(S s, const SGVec4& v) +{ + return SGVec4(SGMisc::max(s, v(0)), + SGMisc::max(s, v(1)), + SGMisc::max(s, v(2)), + SGMisc::max(s, v(3))); +} + /// Scalar dot product template inline @@ -250,6 +316,13 @@ T norm1(const SGVec4& v) { return fabs(v(0)) + fabs(v(1)) + fabs(v(2)) + fabs(v(3)); } +/// The inf-norm of the vector +template +inline +T +normI(const SGVec4& v) +{ return SGMisc::max(fabs(v(0)), fabs(v(1)), fabs(v(2)), fabs(v(2))); } + /// The euclidean norm of the vector, that is what most people call length template inline @@ -271,6 +344,47 @@ bool operator!=(const SGVec4& v1, const SGVec4& v2) { return ! (v1 == v2); } +/// Return true if smaller, good for putting that into a std::map +template +inline +bool +operator<(const SGVec4& v1, const SGVec4& v2) +{ + if (v1(0) < v2(0)) return true; + else if (v2(0) < v1(0)) return false; + else if (v1(1) < v2(1)) return true; + else if (v2(1) < v1(1)) return false; + else if (v1(2) < v2(2)) return true; + else if (v2(2) < v1(2)) return false; + else return (v1(3) < v2(3)); +} + +template +inline +bool +operator<=(const SGVec4& v1, const SGVec4& v2) +{ + if (v1(0) < v2(0)) return true; + else if (v2(0) < v1(0)) return false; + else if (v1(1) < v2(1)) return true; + else if (v2(1) < v1(1)) return false; + else if (v1(2) < v2(2)) return true; + else if (v2(2) < v1(2)) return false; + else return (v1(3) <= v2(3)); +} + +template +inline +bool +operator>(const SGVec4& v1, const SGVec4& v2) +{ return operator<(v2, v1); } + +template +inline +bool +operator>=(const SGVec4& v1, const SGVec4& v2) +{ return operator<=(v2, v1); } + /// Return true if equal to the relative tolerance tol template inline