| HDK
    | 
#include <vec2h.h>
| Public Types | |
| typedef GfHalf | ScalarType | 
| Scalar element type and dimension.  More... | |
| Public Member Functions | |
| GfVec2h ()=default | |
| Default constructor does no initialization.  More... | |
| constexpr | GfVec2h (GfHalf value) | 
| Initialize all elements to a single value.  More... | |
| constexpr | GfVec2h (GfHalf s0, GfHalf s1) | 
| Initialize all elements with explicit arguments.  More... | |
| template<class Scl > | |
| constexpr | GfVec2h (Scl const *p) | 
| Construct with pointer to values.  More... | |
| GfVec2h (class GfVec2d const &other) | |
| Construct from GfVec2d.  More... | |
| GfVec2h (class GfVec2f const &other) | |
| Construct from GfVec2f.  More... | |
| GfVec2h (class GfVec2i const &other) | |
| Implicitly convert from GfVec2i.  More... | |
| GfVec2h & | Set (GfHalf s0, GfHalf s1) | 
| Set all elements with passed arguments.  More... | |
| GfVec2h & | Set (GfHalf const *a) | 
| Set all elements with a pointer to data.  More... | |
| GfHalf const * | data () const | 
| Direct data access.  More... | |
| GfHalf * | data () | 
| GfHalf const * | GetArray () const | 
| GfHalf const & | operator[] (size_t i) const | 
| Indexing.  More... | |
| GfHalf & | operator[] (size_t i) | 
| bool | operator== (GfVec2h const &other) const | 
| Equality comparison.  More... | |
| bool | operator!= (GfVec2h const &other) const | 
| GF_API bool | operator== (class GfVec2d const &other) const | 
| Equality comparison.  More... | |
| GF_API bool | operator== (class GfVec2f const &other) const | 
| Equality comparison.  More... | |
| GF_API bool | operator== (class GfVec2i const &other) const | 
| Equality comparison.  More... | |
| GfVec2h | operator- () const | 
| Create a vec with negated elements.  More... | |
| GfVec2h & | operator+= (GfVec2h const &other) | 
| Addition.  More... | |
| GfVec2h & | operator-= (GfVec2h const &other) | 
| Subtraction.  More... | |
| GfVec2h & | operator*= (double s) | 
| Multiplication by scalar.  More... | |
| GfVec2h | operator* (double s) const | 
| GfVec2h & | operator/= (double s) | 
| Division by scalar.  More... | |
| GfVec2h | operator/ (double s) const | 
| GfHalf | operator* (GfVec2h const &v) const | 
| See GfDot().  More... | |
| GfVec2h | GetProjection (GfVec2h const &v) const | 
| GfVec2h | GetComplement (GfVec2h const &b) const | 
| GfHalf | GetLengthSq () const | 
| Squared length.  More... | |
| GfHalf | GetLength () const | 
| Length.  More... | |
| GfHalf | Normalize (GfHalf eps=0.001) | 
| GfVec2h | GetNormalized (GfHalf eps=0.001) const | 
| Static Public Member Functions | |
| static GfVec2h | XAxis () | 
| Create a unit vector along the X-axis.  More... | |
| static GfVec2h | YAxis () | 
| Create a unit vector along the Y-axis.  More... | |
| static GfVec2h | Axis (size_t i) | 
| Static Public Attributes | |
| static const size_t | dimension = 2 | 
| Friends | |
| size_t | hash_value (GfVec2h const &vec) | 
| Hash.  More... | |
| GfVec2h | operator+ (GfVec2h const &l, GfVec2h const &r) | 
| GfVec2h | operator- (GfVec2h const &l, GfVec2h const &r) | 
| GfVec2h | operator* (double s, GfVec2h const &v) | 
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. 
| typedef GfHalf GfVec2h::ScalarType | 
| 
 | default | 
Default constructor does no initialization.
| 
 | inlineexplicit | 
| 
 | inlineexplicit | 
| 
 | inlineexplicit | 
| 
 | inlinestatic | 
| 
 | inline | 
Returns the orthogonal complement of this->GetProjection(b). That is: 
| 
 | 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().
| 
 | inline | 
| 
 | inline | 
| 
 | inline | 
| 
 | inline | 
| 
 | inline | 
| 
 | inline | 
| 
 | inlinestatic | 
| 
 | inlinestatic |