Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
Public Member Functions | List of all members
Vector< T > Class Template Reference

A Vector2 in 2D, a Vector3 in 3D. More...

#include <dim.h>

Inheritance diagram for Vector< T >:
Vector3< T >

Public Member Functions

 Vector ()
 Default constructor, no data initialization.
 
 Vector (const Vector< T > &v)
 Copy constructor.
 
 Vector (const Vector3< T > &v)
 Copy constructor.
 
 Vector (const T &x, const T &y, const T &z)
 From three.
 
 Vector (const T &t)
 Single component constructor.
 
- Public Member Functions inherited from Vector3< T >
 Vector3 ()
 Default constructor - no data initialization.
 
 Vector3 (const Vector3< T > &v)
 Copy constructor.
 
 Vector3 (const T &x, const T &y, const T &z=0)
 Explicit constructor, by the three components of the vector.
 
 Vector3 (const T &t)
 Explicit constructor, all three components are inintialized to t.
 
const T & x () const
 The x-component of the vector.
 
const T & y () const
 The y-component of the vector.
 
const T & z () const
 The z-component of the vector.
 
const T & dof (unsigned u) const
 The degree-of-freedom u (0-2) component.
 
T & rx ()
 Reference access to the x-component of the vector.
 
T & ry ()
 Reference access to the y-component of the vector.
 
T & rz ()
 Reference access to the z-component of the vector.
 
T & rdof (unsigned u)
 Reference access to degree-of-freedom u (0-2) of the vector.
 
const T & operator[] (unsigned u) const
 Allows array like access to degrees-of-freedom.
 
T & operator[] (unsigned u)
 Allows array like access to degrees-of-freedom.
 
template<std::size_t N>
get () const
 
fsum () const
 Manhattan norm.
 
sum () const
 Sum of components.
 
mag2 () const
 Square of the magnitude, or the vector dotted with itself.
 
mag () const
 The vector magnitude.
 
volume () const
 Volume of region represented by x*y*z - can be negative.
 
Vector3< T > unit () const
 Unit vector - be sure vector is nonzero.
 
Vector3< T > abs () const
 Returns vector of absolute values of components.
 
void fill (const T &d)
 Fills all three components with value d.
 
maxComp () const
 Returns the maximum component.
 
minComp () const
 Returns the minimum component.
 
unsigned maxCompIndex () const
 Returns the max component index.
 
unsigned minCompIndex () const
 Returns the min component index.
 
const Vector3< T > & safeDivE (const Vector3< T > &v)
 "Safe" division operation - checks for zero and overflow.
 
const Vector3< T > safeDiv (const Vector3< T > &v)
 "Safe" division operation - checks for zero and overflow.
 
bool operator== (const Vector3< T > &v) const
 Comparison operator - no tolerance is used.
 
bool operator!= (const Vector3< T > &v) const
 Comparison operator - no tolerance is used.
 
bool operator< (const Vector3< T > &v) const
 Comparison operator, compare each DOF in order.
 
bool operator> (const Vector3< T > &v) const
 Comparison operator, compare each DOF in order.
 
const Vector3< T > & operator+= (const Vector3< T > &v)
 In-place mathematical operators – * and / are done on a component basis.
 
const Vector3< T > & operator-= (const Vector3< T > &v)
 In-place mathematical operators – * and / are done on a component basis. More...
 
const Vector3< T > & operator *= (const Vector3< T > &v)
 In-place mathematical operators – * and / are done on a component basis. More...
 
const Vector3< T > & operator *= (const T &t)
 In-place mathematical operators – * and / are done on a component basis. More...
 
const Vector3< T > & operator/= (const Vector3< T > &v)
 In-place mathematical operators – * and / are done on a component basis. More...
 
const Vector3< T > & operator/= (const T &t)
 In-place mathematical operators – * and / are done on a component basis. More...
 
Vector3< T > operator+ (const Vector3< T > &v) const
 Binary mathematical operators – * and / are done on a component basis.
 
Vector3< T > operator- (const Vector3< T > &v) const
 Binary mathematical operators – * and / are done on a component basis. More...
 
Vector3< T > operator * (const Vector3< T > &v) const
 Binary mathematical operators – * and / are done on a component basis. More...
 
Vector3< T > operator * (const T &t) const
 Binary mathematical operators – * and / are done on a component basis. More...
 
Vector3< T > operator/ (const Vector3< T > &v) const
 Binary mathematical operators – * and / are done on a component basis. More...
 
Vector3< T > operator/ (const T &t) const
 Binary mathematical operators – * and / are done on a component basis. More...
 
Vector3< T > operator & (const Vector3< T > &v) const
 Cross Product.
 
operator| (const Vector3< T > &v) const
 Dot Product.
 

Additional Inherited Members

Detailed Description

template<class T>
class Vector< T >

A Vector2 in 2D, a Vector3 in 3D.


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