OpenVDB  9.0.1
Public Types | Public Member Functions | Static Public Attributes | List of all members
Vec3< T > Class Template Reference

A simple vector class with three double components, similar to openvdb::math::Vec3. More...

#include <nanovdb/NanoVDB.h>

Public Types

using ValueType = T
 

Public Member Functions

 Vec3 ()=default
 
 Vec3 (T x)
 
 Vec3 (T x, T y, T z)
 
template<typename T2 >
 Vec3 (const Vec3< T2 > &v)
 
 Vec3 (const Coord &ijk)
 
bool operator== (const Vec3 &rhs) const
 
bool operator!= (const Vec3 &rhs) const
 
template<typename Vec3T >
Vec3operator= (const Vec3T &rhs)
 
const T & operator[] (int i) const
 
T & operator[] (int i)
 
template<typename Vec3T >
dot (const Vec3T &v) const
 
template<typename Vec3T >
Vec3 cross (const Vec3T &v) const
 
lengthSqr () const
 
length () const
 
Vec3 operator- () const
 
Vec3 operator* (const Vec3 &v) const
 
Vec3 operator/ (const Vec3 &v) const
 
Vec3 operator+ (const Vec3 &v) const
 
Vec3 operator- (const Vec3 &v) const
 
Vec3 operator* (const T &s) const
 
Vec3 operator/ (const T &s) const
 
Vec3operator+= (const Vec3 &v)
 
Vec3operator-= (const Vec3 &v)
 
Vec3operator*= (const T &s)
 
Vec3operator/= (const T &s)
 
Vec3normalize ()
 
Vec3minComponent (const Vec3 &other)
 Perform a component-wise minimum with the other Coord. More...
 
Vec3maxComponent (const Vec3 &other)
 Perform a component-wise maximum with the other Coord. More...
 
ValueType min () const
 Return the smallest vector component. More...
 
ValueType max () const
 Return the largest vector component. More...
 
Coord floor () const
 
Coord ceil () const
 
Coord round () const
 

Static Public Attributes

static const int SIZE = 3
 

Detailed Description

template<typename T>
class nanovdb::Vec3< T >

A simple vector class with three double components, similar to openvdb::math::Vec3.

Member Typedef Documentation

using ValueType = T

Constructor & Destructor Documentation

Vec3 ( )
default
Vec3 ( x)
inlineexplicit
Vec3 ( x,
y,
z 
)
inline
Vec3 ( const Vec3< T2 > &  v)
inlineexplicit
Vec3 ( const Coord ijk)
inlineexplicit

Member Function Documentation

Coord ceil ( ) const
inline
Vec3 cross ( const Vec3T &  v) const
inline
T dot ( const Vec3T &  v) const
inline
Coord floor ( ) const
inline
T length ( ) const
inline
T lengthSqr ( ) const
inline
ValueType max ( ) const
inline

Return the largest vector component.

Vec3& maxComponent ( const Vec3< T > &  other)
inline

Perform a component-wise maximum with the other Coord.

ValueType min ( ) const
inline

Return the smallest vector component.

Vec3& minComponent ( const Vec3< T > &  other)
inline

Perform a component-wise minimum with the other Coord.

Vec3& normalize ( )
inline
bool operator!= ( const Vec3< T > &  rhs) const
inline
Vec3 operator* ( const Vec3< T > &  v) const
inline
Vec3 operator* ( const T &  s) const
inline
Vec3& operator*= ( const T &  s)
inline
Vec3 operator+ ( const Vec3< T > &  v) const
inline
Vec3& operator+= ( const Vec3< T > &  v)
inline
Vec3 operator- ( ) const
inline
Vec3 operator- ( const Vec3< T > &  v) const
inline
Vec3& operator-= ( const Vec3< T > &  v)
inline
Vec3 operator/ ( const Vec3< T > &  v) const
inline
Vec3 operator/ ( const T &  s) const
inline
Vec3& operator/= ( const T &  s)
inline
Vec3& operator= ( const Vec3T &  rhs)
inline
bool operator== ( const Vec3< T > &  rhs) const
inline
const T& operator[] ( int  i) const
inline
T& operator[] ( int  i)
inline
Coord round ( ) const
inline

Member Data Documentation

const int SIZE = 3
static