OpenVDB 9.0.0
Public Types | Public Member Functions | Static Public Attributes | List of all members
Tuple< SIZE, T > Class Template Reference

#include <openvdb/math/Tuple.h>

Inherited by Vec3< Real >.

Public Types

using value_type = T
 
using ValueType = T
 

Public Member Functions

 Tuple ()=default
 
template<int src_size, typename src_valtype >
 Tuple (Tuple< src_size, src_valtype > const &src)
 Conversion constructor. More...
 
operator[] (int i) const
 
T & operator[] (int i)
 

Static Public Attributes

static const int size = SIZE
 

Compatibility

These are mostly for backwards compability with functions that take old-style Vs (which are just arrays).

mm [SIZE]
 Copies this tuple into an array of a compatible type. More...
 
template<typename S >
void toV (S *v) const
 Copies this tuple into an array of a compatible type. More...
 
value_typeasV ()
 Exposes the internal array. Be careful when using this function. More...
 
value_type const * asV () const
 Exposes the internal array. Be careful when using this function. More...
 
std::string str () const
 
void write (std::ostream &os) const
 Copies this tuple into an array of a compatible type. More...
 
void read (std::istream &is)
 Copies this tuple into an array of a compatible type. More...
 
bool isNan () const
 True if a Nan is present in this tuple. More...
 
bool isInfinite () const
 True if an Inf is present in this tuple. More...
 
bool isFinite () const
 True if no Nan or Inf values are present. More...
 
bool isZero () const
 True if all elements are exactly zero. More...
 

Detailed Description

template<int SIZE, typename T>
class openvdb::v9_0::math::Tuple< SIZE, T >

A base class for homogenous tuple types

Member Typedef Documentation

◆ value_type

using value_type = T

◆ ValueType

using ValueType = T

Constructor & Destructor Documentation

◆ Tuple() [1/2]

Tuple ( )
default

Trivial constructor, the Tuple is NOT initialized

Note
destructor, copy constructor, assignment operator and move constructor are left to be defined by the compiler (default)

◆ Tuple() [2/2]

Tuple ( Tuple< src_size, src_valtype > const &  src)
inlineexplicit

Conversion constructor.

Tuples with different value types and different sizes can be interconverted using this member. Converting from a larger tuple results in truncation; converting from a smaller tuple results in the extra data members being zeroed out. This function assumes that the integer 0 is convertible to the tuple's value type.

Member Function Documentation

◆ asV() [1/2]

value_type * asV ( )
inline

Exposes the internal array. Be careful when using this function.

◆ asV() [2/2]

value_type const * asV ( ) const
inline

Exposes the internal array. Be careful when using this function.

◆ isFinite()

bool isFinite ( ) const
inline

True if no Nan or Inf values are present.

◆ isInfinite()

bool isInfinite ( ) const
inline

True if an Inf is present in this tuple.

◆ isNan()

bool isNan ( ) const
inline

True if a Nan is present in this tuple.

◆ isZero()

bool isZero ( ) const
inline

True if all elements are exactly zero.

◆ operator[]() [1/2]

T & operator[] ( int  i)
inline

◆ operator[]() [2/2]

T operator[] ( int  i) const
inline

◆ read()

void read ( std::istream &  is)
inline

Copies this tuple into an array of a compatible type.

◆ str()

std::string str ( ) const
inline
Returns
string representation of Classname

◆ toV()

void toV ( S *  v) const
inline

Copies this tuple into an array of a compatible type.

◆ write()

void write ( std::ostream &  os) const
inline

Copies this tuple into an array of a compatible type.

Member Data Documentation

◆ mm

T mm[SIZE]
protected

Copies this tuple into an array of a compatible type.

◆ size

const int size = SIZE
static