This document is for a version of USD that is under development. See this page for the current release.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
GfVec2h Class Reference

Basic type for a vector of 2 GfHalf components. More...

#include <vec2h.h>

Public Types

typedef GfHalf ScalarType
 Scalar element type and dimension.
 

Public Member Functions

 GfVec2h ()=default
 Default constructor does no initialization.
 
constexpr GfVec2h (GfHalf value)
 Initialize all elements to a single value.
 
constexpr GfVec2h (GfHalf s0, GfHalf s1)
 Initialize all elements with explicit arguments.
 
template<class Scl >
constexpr GfVec2h (Scl const *p)
 Construct with pointer to values.
 
 GfVec2h (class GfVec2d const &other)
 Construct from GfVec2d.
 
 GfVec2h (class GfVec2f const &other)
 Construct from GfVec2f.
 
 GfVec2h (class GfVec2i const &other)
 Implicitly convert from GfVec2i.
 
GfVec2hSet (GfHalf s0, GfHalf s1)
 Set all elements with passed arguments.
 
GfVec2hSet (GfHalf const *a)
 Set all elements with a pointer to data.
 
GfHalf const * data () const
 Direct data access.
 
GfHalfdata ()
 
GfHalf const * GetArray () const
 
GfHalf const & operator[] (size_t i) const
 Indexing.
 
GfHalfoperator[] (size_t i)
 
bool operator== (GfVec2h const &other) const
 Equality comparison.
 
bool operator!= (GfVec2h const &other) const
 
GF_API bool operator== (class GfVec2d const &other) const
 Equality comparison.
 
GF_API bool operator== (class GfVec2f const &other) const
 Equality comparison.
 
GF_API bool operator== (class GfVec2i const &other) const
 Equality comparison.
 
GfVec2h operator- () const
 Create a vec with negated elements.
 
GfVec2hoperator+= (GfVec2h const &other)
 Addition.
 
GfVec2hoperator-= (GfVec2h const &other)
 Subtraction.
 
GfVec2hoperator*= (double s)
 Multiplication by scalar.
 
GfVec2h operator* (double s) const
 
GfVec2hoperator/= (double s)
 Division by scalar.
 
GfVec2h operator/ (double s) const
 
GfHalf operator* (GfVec2h const &v) const
 See GfDot().
 
GfVec2h GetProjection (GfVec2h const &v) const
 Returns the projection of this onto v.
 
GfVec2h GetComplement (GfVec2h const &b) const
 Returns the orthogonal complement of this->GetProjection(b).
 
GfHalf GetLengthSq () const
 Squared length.
 
GfHalf GetLength () const
 Length.
 
GfHalf Normalize (GfHalf eps=0.001)
 Normalizes the vector in place to unit length, returning the length before normalization.
 
GfVec2h GetNormalized (GfHalf eps=0.001) const
 

Static Public Member Functions

static GfVec2h XAxis ()
 Create a unit vector along the X-axis.
 
static GfVec2h YAxis ()
 Create a unit vector along the Y-axis.
 
static GfVec2h Axis (size_t i)
 Create a unit vector along the i-th axis, zero-based.
 

Static Public Attributes

static const size_t dimension = 2
 

Friends

size_t hash_value (GfVec2h const &vec)
 Hash.
 
GfVec2h operator+ (GfVec2h const &l, GfVec2h const &r)
 
GfVec2h operator- (GfVec2h const &l, GfVec2h const &r)
 
GfVec2h operator* (double s, GfVec2h const &v)
 

Detailed Description

Basic type for a vector of 2 GfHalf components.

Represents a vector of 2 components of type GfHalf. It is intended to be fast and simple.

Definition at line 46 of file vec2h.h.

Member Typedef Documentation

◆ ScalarType

typedef GfHalf ScalarType

Scalar element type and dimension.

Definition at line 50 of file vec2h.h.

Constructor & Destructor Documentation

◆ GfVec2h() [1/7]

GfVec2h ( )
default

Default constructor does no initialization.

◆ GfVec2h() [2/7]

constexpr GfVec2h ( GfHalf  value)
inlineexplicitconstexpr

Initialize all elements to a single value.

Definition at line 57 of file vec2h.h.

◆ GfVec2h() [3/7]

constexpr GfVec2h ( GfHalf  s0,
GfHalf  s1 
)
inlineconstexpr

Initialize all elements with explicit arguments.

Definition at line 63 of file vec2h.h.

◆ GfVec2h() [4/7]

constexpr GfVec2h ( Scl const *  p)
inlineexplicitconstexpr

Construct with pointer to values.

Definition at line 70 of file vec2h.h.

◆ GfVec2h() [5/7]

GfVec2h ( class GfVec2d const &  other)
inlineexplicit

Construct from GfVec2d.

Definition at line 275 of file vec2h.h.

◆ GfVec2h() [6/7]

GfVec2h ( class GfVec2f const &  other)
inlineexplicit

Construct from GfVec2f.

Definition at line 281 of file vec2h.h.

◆ GfVec2h() [7/7]

GfVec2h ( class GfVec2i const &  other)
inline

Implicitly convert from GfVec2i.

Definition at line 287 of file vec2h.h.

Member Function Documentation

◆ Axis()

static GfVec2h Axis ( size_t  i)
inlinestatic

Create a unit vector along the i-th axis, zero-based.

Return the zero vector if i is greater than or equal to 2.

Definition at line 99 of file vec2h.h.

◆ data() [1/2]

GfHalf * data ( )
inline

Definition at line 120 of file vec2h.h.

◆ data() [2/2]

GfHalf const * data ( ) const
inline

Direct data access.

Definition at line 119 of file vec2h.h.

◆ GetArray()

GfHalf const * GetArray ( ) const
inline

Definition at line 121 of file vec2h.h.

◆ GetComplement()

GfVec2h GetComplement ( GfVec2h const &  b) const
inline

Returns the orthogonal complement of this->GetProjection(b).

That is:

*this - this->GetProjection(b)
GfVec2h GetProjection(GfVec2h const &v) const
Returns the projection of this onto v.
Definition: vec2h.h:211

Definition at line 220 of file vec2h.h.

◆ GetLength()

GfHalf GetLength ( ) const
inline

Length.

Definition at line 230 of file vec2h.h.

◆ GetLengthSq()

GfHalf GetLengthSq ( ) const
inline

Squared length.

Definition at line 225 of file vec2h.h.

◆ GetNormalized()

GfVec2h GetNormalized ( GfHalf  eps = 0.001) const
inline

Definition at line 250 of file vec2h.h.

◆ GetProjection()

GfVec2h GetProjection ( GfVec2h const &  v) const
inline

Returns the projection of this onto v.

That is:

v * (*this * v)

Definition at line 211 of file vec2h.h.

◆ Normalize()

GfHalf Normalize ( GfHalf  eps = 0.001)
inline

Normalizes the vector in place to unit length, returning the length before normalization.

If the length of the vector is smaller than eps, then the vector is set to vector/eps. The original length of the vector is returned. See also GfNormalize().

Definition at line 242 of file vec2h.h.

◆ operator!=()

bool operator!= ( GfVec2h const &  other) const
inline

Definition at line 137 of file vec2h.h.

◆ operator*() [1/2]

GfVec2h operator* ( double  s) const
inline

Definition at line 183 of file vec2h.h.

◆ operator*() [2/2]

GfHalf operator* ( GfVec2h const &  v) const
inline

See GfDot().

Definition at line 203 of file vec2h.h.

◆ operator*=()

GfVec2h & operator*= ( double  s)
inline

Multiplication by scalar.

Definition at line 178 of file vec2h.h.

◆ operator+=()

GfVec2h & operator+= ( GfVec2h const &  other)
inline

Addition.

Definition at line 158 of file vec2h.h.

◆ operator-()

GfVec2h operator- ( ) const
inline

Create a vec with negated elements.

Definition at line 153 of file vec2h.h.

◆ operator-=()

GfVec2h & operator-= ( GfVec2h const &  other)
inline

Subtraction.

Definition at line 168 of file vec2h.h.

◆ operator/()

GfVec2h operator/ ( double  s) const
inline

Definition at line 198 of file vec2h.h.

◆ operator/=()

GfVec2h & operator/= ( double  s)
inline

Division by scalar.

Definition at line 192 of file vec2h.h.

◆ operator==() [1/4]

GF_API bool operator== ( class GfVec2d const &  other) const

Equality comparison.

◆ operator==() [2/4]

GF_API bool operator== ( class GfVec2f const &  other) const

Equality comparison.

◆ operator==() [3/4]

GF_API bool operator== ( class GfVec2i const &  other) const

Equality comparison.

◆ operator==() [4/4]

bool operator== ( GfVec2h const &  other) const
inline

Equality comparison.

Definition at line 133 of file vec2h.h.

◆ operator[]() [1/2]

GfHalf & operator[] ( size_t  i)
inline

Definition at line 125 of file vec2h.h.

◆ operator[]() [2/2]

GfHalf const & operator[] ( size_t  i) const
inline

Indexing.

Definition at line 124 of file vec2h.h.

◆ Set() [1/2]

GfVec2h & Set ( GfHalf const *  a)
inline

Set all elements with a pointer to data.

Definition at line 114 of file vec2h.h.

◆ Set() [2/2]

GfVec2h & Set ( GfHalf  s0,
GfHalf  s1 
)
inline

Set all elements with passed arguments.

Definition at line 107 of file vec2h.h.

◆ XAxis()

static GfVec2h XAxis ( )
inlinestatic

Create a unit vector along the X-axis.

Definition at line 85 of file vec2h.h.

◆ YAxis()

static GfVec2h YAxis ( )
inlinestatic

Create a unit vector along the Y-axis.

Definition at line 91 of file vec2h.h.

Friends And Related Function Documentation

◆ hash_value

size_t hash_value ( GfVec2h const &  vec)
friend

Hash.

Definition at line 128 of file vec2h.h.

◆ operator*

GfVec2h operator* ( double  s,
GfVec2h const &  v 
)
friend

Definition at line 186 of file vec2h.h.

◆ operator+

GfVec2h operator+ ( GfVec2h const &  l,
GfVec2h const &  r 
)
friend

Definition at line 163 of file vec2h.h.

◆ operator-

GfVec2h operator- ( GfVec2h const &  l,
GfVec2h const &  r 
)
friend

Definition at line 173 of file vec2h.h.

Member Data Documentation

◆ dimension

const size_t dimension = 2
static

Definition at line 51 of file vec2h.h.


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