diff --git a/libs/kimath/include/math/vector3.h b/libs/kimath/include/math/vector3.h index 6fef14c988..7305e94c88 100644 --- a/libs/kimath/include/math/vector3.h +++ b/libs/kimath/include/math/vector3.h @@ -20,6 +20,8 @@ #ifndef VECTOR3_H_ #define VECTOR3_H_ +#include + /** * Traits class for VECTOR2. */ @@ -55,31 +57,20 @@ public: static constexpr extended_type ECOORD_MAX = std::numeric_limits::max(); static constexpr extended_type ECOORD_MIN = std::numeric_limits::min(); - T x, y, z; + T x{}; + T y{}; + T z{}; - /// Construct a 3D-vector with x, y = 0 - VECTOR3(); + /// Construct a 3D-vector with x, y, z = 0 + VECTOR3() = default; - /// Construct a vector with given components x, y + /// Construct a vector with given components x, y, z VECTOR3( T x, T y, T z ); /// Initializes a vector from another specialization. Beware of rounding /// issues. template - VECTOR3( const VECTOR3& aVec ) - { - x = (T) aVec.x; - y = (T) aVec.y; - z = (T) aVec.z; - } - - /// Copy a vector - VECTOR3( const VECTOR3& aVec ) - { - x = aVec.x; - y = aVec.y; - z = aVec.z; - } + VECTOR3( const VECTOR3& aVec ); /** * Compute cross product of self with \a aVector @@ -114,18 +105,17 @@ public: template -VECTOR3::VECTOR3() +VECTOR3::VECTOR3( T aX, T aY, T aZ ) : + x( aX ), y( aY ), z( aZ ) { - x = y = z = 0.0; } template -VECTOR3::VECTOR3( T aX, T aY, T aZ ) +template +VECTOR3::VECTOR3( const VECTOR3& aVec ) : + x( aVec.x ), y( aVec.y ), z( aVec.z ) { - x = aX; - y = aY; - z = aZ; } @@ -159,9 +149,12 @@ template VECTOR3 VECTOR3::Normalize() { T norm = EuclideanNorm(); - x /= norm; - y /= norm; - z /= norm; + if( norm > T( 0 ) ) + { + x /= norm; + y /= norm; + z /= norm; + } return *this; }