HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Vector3d Class Reference

#include <Types.h>

+ Inheritance diagram for Vector3d:

Public Member Functions

 Vector3d ()=default
 
 Vector3d (double x, double y, double z)
 
- Public Member Functions inherited from VectorN< Vector3d, double, 3 >
 VectorN ()
 
 VectorN (Uninit)
 
 VectorN (doubles)
 
 VectorN (const std::array< double, N > &arr)
 
 VectorN (const vector< double > &vec)
 
 VectorN (const double *begin, const double *end)
 
bool operator== (const Vector3d &rhs) const
 Return true if the given vector is identical to this one. More...
 
bool operator!= (const Vector3d &rhs) const
 Return true if the given vector differs from this one. More...
 
bool operator< (const Vector3d &rhs) const
 Compare two vectors lexicographically. More...
 
double & operator[] (size_t i)
 Return the scalar value at the given index. More...
 
const double & operator[] (size_t i) const
 Return the const scalar value at the given index. More...
 
Vector3d operator+ (const Vector3d &rhs) const
 Component-wise addition of two vectors. More...
 
VectorNoperator+= (const Vector3d &rhs)
 Component-wise addition of two vectors. More...
 
Vector3d operator- (const Vector3d &rhs) const
 Component-wise subtraction of two vectors. More...
 
Vector3d operator- () const
 Unary negation of a vector. More...
 
VectorNoperator-= (const Vector3d &rhs)
 Component-wise subtraction of two vectors. More...
 
Vector3d operator* (const Vector3d &rhs) const
 Component-wise multiplication of two vectors. More...
 
Vector3d operator* (doubles) const
 Component-wise multiplication of a vector by a scalar. More...
 
VectorNoperator*= (const Vector3d &rhs)
 Component-wise multiplication of two vectors. More...
 
VectorNoperator*= (doubles)
 Component-wise multiplication of a vector by a scalar. More...
 
Vector3d operator/ (const Vector3d &rhs) const
 Component-wise division of two vectors. More...
 
Vector3d operator/ (doubles) const
 Component-wise division of a vector by a scalar. More...
 
VectorNoperator/= (const Vector3d &rhs)
 Component-wise division of two vectors. More...
 
VectorNoperator/= (doubles)
 Component-wise division of a vector by a scalar. More...
 
double getMagnitude () const
 Return the magnitude of the vector. More...
 
Vector3d getNormalized () const
 Return a normalized vector. More...
 
double dot (const Vector3d &rhs) const
 Return the dot product of two vectors. More...
 
Iterator begin ()
 
ConstIterator begin () const
 
Iterator end ()
 
ConstIterator end () const
 
double * data ()
 Return a pointer to the underlying data array. More...
 
const double * data () const
 Return a const pointer to the underlying data array. More...
 

Additional Inherited Members

- Public Types inherited from VectorN< Vector3d, double, 3 >
using Iterator = typename std::array< double, N >::iterator
 
using ConstIterator = typename std::array< double, N >::const_iterator
 
- Static Public Member Functions inherited from VectorN< Vector3d, double, 3 >
static constexpr size_t numElements ()
 Return the number of scalar elements for the vector. More...
 
- Protected Attributes inherited from VectorN< Vector3d, double, 3 >
std::array< double, N > _arr
 

Detailed Description

A vector of three floating-point values (double-precision)

Definition at line 61 of file Types.h.

Constructor & Destructor Documentation

Vector3d::Vector3d ( )
default
Vector3d::Vector3d ( double  x,
double  y,
double  z 
)
inline

Definition at line 66 of file Types.h.


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