Go to the source code of this file.
|
| GF_API std::ostream & | operator<< (std::ostream &, GfVec4f const &) |
| |
| GfVec4f | GfCompMult (GfVec4f const &v1, GfVec4f const &v2) |
| | Returns component-wise multiplication of vectors v1 and v2. More...
|
| |
| GfVec4f | GfCompDiv (GfVec4f const &v1, GfVec4f const &v2) |
| | Returns component-wise quotient of vectors v1 and v2. More...
|
| |
| float | GfDot (GfVec4f const &v1, GfVec4f const &v2) |
| | Returns the dot (inner) product of two vectors. More...
|
| |
| float | GfGetLength (GfVec4f const &v) |
| | Returns the geometric length of v. More...
|
| |
| float | GfNormalize (GfVec4f *v, float eps=GF_MIN_VECTOR_LENGTH) |
| |
| GfVec4f | GfGetNormalized (GfVec4f const &v, float eps=GF_MIN_VECTOR_LENGTH) |
| |
| GfVec4f | GfGetProjection (GfVec4f const &a, GfVec4f const &b) |
| |
| GfVec4f | GfGetComplement (GfVec4f const &a, GfVec4f const &b) |
| |
| bool | GfIsClose (GfVec4f const &v1, GfVec4f const &v2, double tolerance) |
| |
Returns component-wise quotient of vectors v1 and v2.
Definition at line 333 of file vec4f.h.
Returns component-wise multiplication of vectors v1 and v2.
Definition at line 322 of file vec4f.h.
Returns the dot (inner) product of two vectors.
Definition at line 344 of file vec4f.h.
Returns the orthogonal complement of a.GetProjection(b). That is:
Definition at line 389 of file vec4f.h.
Returns the geometric length of v.
Definition at line 351 of file vec4f.h.
Returns a normalized (unit-length) vector with the same direction as v. If the length of this vector is smaller than eps, the vector divided by eps is returned.
Definition at line 369 of file vec4f.h.
Returns the projection of a onto b. That is:
Definition at line 379 of file vec4f.h.
| bool GfIsClose |
( |
GfVec4f const & |
v1, |
|
|
GfVec4f const & |
v2, |
|
|
double |
tolerance |
|
) |
| |
|
inline |
Tests for equality within a given tolerance, returning true if the length of the difference vector is less than or equal to tolerance.
Definition at line 397 of file vec4f.h.
Normalizes *v in place to unit length, returning the length before normalization. If the length of *v is smaller than eps then *v is set to *v/eps. The original length of *v is returned.
Definition at line 360 of file vec4f.h.
| GF_API std::ostream& operator<< |
( |
std::ostream & |
, |
|
|
GfVec4f const & |
|
|
) |
| |