geolib2
Public Member Functions | Public Attributes | Friends | List of all members
geo::Vec3T< T > Class Template Reference

#include <math_types.h>

Public Member Functions

Vec3T cross (const Vec3T &v) const
 returns cross product More...
 
dot (const Vec3T &v) const
 returns dot product More...
 
getX () const
 
getY () const
 
getZ () const
 
length () const
 Returns the length of the vector. More...
 
length2 () const
 Returns the squared length of the vector. More...
 
void normalize ()
 Normalizes the vector. More...
 
Vec3T normalized () const
 Returns the normalized version of the vector. More...
 
bool operator!= (const Vec3T &v) const
 
Vec3T operator* (T s) const
 multiplies vector with a scalar More...
 
Vec3Toperator*= (const Vec3T &v)
 
Vec3Toperator*= (T s)
 
Vec3T operator+ (const Vec3T &v) const
 returns addition with v More...
 
Vec3Toperator+= (const Vec3T &v)
 
Vec3T operator- (const Vec3T &v) const
 returns this minus v More...
 
Vec3Toperator-= (const Vec3T &v)
 
Vec3T operator/ (T s) const
 divides vector by scalar More...
 
Vec3Toperator/= (const Vec3T &v)
 
Vec3Toperator/= (T s)
 
Vec3Toperator= (const Vec3T &v)
 
bool operator== (const Vec3T &v) const
 
T & operator[] (const uint i)
 
const T & operator[] (const uint i) const
 
Vec2T< T > projectTo2d () const
 Drop the displacement of the 3rd coordinate. More...
 
 Vec3T ()
 
 Vec3T (const T *values)
 
 Vec3T (const Vec3T &v)=default
 
 Vec3T (T value)
 
 Vec3T (T x_, T y_, T z_)
 
 ~Vec3T ()
 

Public Attributes

union {
   struct {
      T   x
 
      T   y
 
      T   z
 
   } 
 
   T   m [3]
 
}; 
 

Friends

Vec3T operator* (T s, const Vec3T &v)
 multiplies vector with a scalar More...
 
Vec3T operator- (const Vec3T &v)
 
std::ostreamoperator<< (std::ostream &out, const Vec3T &v)
 

Detailed Description

template<typename T>
class geo::Vec3T< T >

Definition at line 13 of file math_types.h.

Constructor & Destructor Documentation

◆ Vec3T() [1/5]

template<typename T >
geo::Vec3T< T >::Vec3T ( )
inline

Definition at line 126 of file math_types.h.

◆ Vec3T() [2/5]

template<typename T >
geo::Vec3T< T >::Vec3T ( const Vec3T< T > &  v)
default

◆ Vec3T() [3/5]

template<typename T >
geo::Vec3T< T >::Vec3T ( x_,
y_,
z_ 
)
inline

Definition at line 128 of file math_types.h.

◆ Vec3T() [4/5]

template<typename T >
geo::Vec3T< T >::Vec3T ( value)
inline

Definition at line 129 of file math_types.h.

◆ Vec3T() [5/5]

template<typename T >
geo::Vec3T< T >::Vec3T ( const T *  values)
inline

Definition at line 130 of file math_types.h.

◆ ~Vec3T()

template<typename T >
geo::Vec3T< T >::~Vec3T ( )
inline

Definition at line 141 of file math_types.h.

Member Function Documentation

◆ cross()

template<typename T >
Vec3T geo::Vec3T< T >::cross ( const Vec3T< T > &  v) const
inline

returns cross product

Definition at line 159 of file math_types.h.

◆ dot()

template<typename T >
T geo::Vec3T< T >::dot ( const Vec3T< T > &  v) const
inline

returns dot product

Definition at line 156 of file math_types.h.

◆ getX()

template<typename T >
T geo::Vec3T< T >::getX ( ) const
inline

Definition at line 198 of file math_types.h.

◆ getY()

template<typename T >
T geo::Vec3T< T >::getY ( ) const
inline

Definition at line 199 of file math_types.h.

◆ getZ()

template<typename T >
T geo::Vec3T< T >::getZ ( ) const
inline

Definition at line 200 of file math_types.h.

◆ length()

template<typename T >
T geo::Vec3T< T >::length ( ) const
inline

Returns the length of the vector.

Definition at line 177 of file math_types.h.

◆ length2()

template<typename T >
T geo::Vec3T< T >::length2 ( ) const
inline

Returns the squared length of the vector.

Definition at line 180 of file math_types.h.

◆ normalize()

template<typename T >
void geo::Vec3T< T >::normalize ( )
inline

Normalizes the vector.

Definition at line 186 of file math_types.h.

◆ normalized()

template<typename T >
Vec3T geo::Vec3T< T >::normalized ( ) const
inline

Returns the normalized version of the vector.

Definition at line 183 of file math_types.h.

◆ operator!=()

template<typename T >
bool geo::Vec3T< T >::operator!= ( const Vec3T< T > &  v) const
inline

Definition at line 151 of file math_types.h.

◆ operator*()

template<typename T >
Vec3T geo::Vec3T< T >::operator* ( s) const
inline

multiplies vector with a scalar

Definition at line 168 of file math_types.h.

◆ operator*=() [1/2]

template<typename T >
Vec3T& geo::Vec3T< T >::operator*= ( const Vec3T< T > &  v)
inline

Definition at line 192 of file math_types.h.

◆ operator*=() [2/2]

template<typename T >
Vec3T& geo::Vec3T< T >::operator*= ( s)
inline

Definition at line 195 of file math_types.h.

◆ operator+()

template<typename T >
Vec3T geo::Vec3T< T >::operator+ ( const Vec3T< T > &  v) const
inline

returns addition with v

Definition at line 162 of file math_types.h.

◆ operator+=()

template<typename T >
Vec3T& geo::Vec3T< T >::operator+= ( const Vec3T< T > &  v)
inline

Definition at line 190 of file math_types.h.

◆ operator-()

template<typename T >
Vec3T geo::Vec3T< T >::operator- ( const Vec3T< T > &  v) const
inline

returns this minus v

Definition at line 165 of file math_types.h.

◆ operator-=()

template<typename T >
Vec3T& geo::Vec3T< T >::operator-= ( const Vec3T< T > &  v)
inline

Definition at line 191 of file math_types.h.

◆ operator/()

template<typename T >
Vec3T geo::Vec3T< T >::operator/ ( s) const
inline

divides vector by scalar

Definition at line 171 of file math_types.h.

◆ operator/=() [1/2]

template<typename T >
Vec3T& geo::Vec3T< T >::operator/= ( const Vec3T< T > &  v)
inline

Definition at line 193 of file math_types.h.

◆ operator/=() [2/2]

template<typename T >
Vec3T& geo::Vec3T< T >::operator/= ( s)
inline

Definition at line 196 of file math_types.h.

◆ operator=()

template<typename T >
Vec3T& geo::Vec3T< T >::operator= ( const Vec3T< T > &  v)
inline

Definition at line 132 of file math_types.h.

◆ operator==()

template<typename T >
bool geo::Vec3T< T >::operator== ( const Vec3T< T > &  v) const
inline

Definition at line 147 of file math_types.h.

◆ operator[]() [1/2]

template<typename T >
T& geo::Vec3T< T >::operator[] ( const uint  i)
inline

Definition at line 143 of file math_types.h.

◆ operator[]() [2/2]

template<typename T >
const T& geo::Vec3T< T >::operator[] ( const uint  i) const
inline

Definition at line 145 of file math_types.h.

◆ projectTo2d()

template<typename T >
Vec2T<T> geo::Vec3T< T >::projectTo2d ( ) const
inline

Drop the displacement of the 3rd coordinate.

Returns
Vector in 2D

Definition at line 206 of file math_types.h.

Friends And Related Function Documentation

◆ operator*

template<typename T >
Vec3T operator* ( s,
const Vec3T< T > &  v 
)
friend

multiplies vector with a scalar

Definition at line 174 of file math_types.h.

◆ operator-

template<typename T >
Vec3T operator- ( const Vec3T< T > &  v)
friend

Definition at line 188 of file math_types.h.

◆ operator<<

template<typename T >
std::ostream& operator<< ( std::ostream out,
const Vec3T< T > &  v 
)
friend

Definition at line 211 of file math_types.h.

Member Data Documentation

◆ @5

union { ... }

◆ m

template<typename T >
T geo::Vec3T< T >::m[3]

Definition at line 218 of file math_types.h.

◆ x

template<typename T >
T geo::Vec3T< T >::x

Definition at line 217 of file math_types.h.

◆ y

template<typename T >
T geo::Vec3T< T >::y

Definition at line 217 of file math_types.h.

◆ z

template<typename T >
T geo::Vec3T< T >::z

Definition at line 217 of file math_types.h.


The documentation for this class was generated from the following file: