MaterialX 1.38.10
Loading...
Searching...
No Matches
Vector3d Class Reference

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

#include <Types.h>

Inheritance diagram for Vector3d:
VectorN< Vector3d, double, 3 > VectorBase

Public Member Functions

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

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.
 
- Protected Attributes inherited from VectorN< Vector3d, double, 3 >
std::array< double, N > _arr
 

Detailed Description

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


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