Go to the source code of this file.
|
| GF_API std::ostream & | operator<< (std::ostream &, GfVec2f const &) |
| | Output a GfVec2f. More...
|
| |
| GfVec2f | GfCompMult (GfVec2f const &v1, GfVec2f const &v2) |
| | Returns component-wise multiplication of vectors v1 and v2. More...
|
| |
| GfVec2f | GfCompDiv (GfVec2f const &v1, GfVec2f const &v2) |
| | Returns component-wise quotient of vectors v1 and v2. More...
|
| |
| float | GfDot (GfVec2f const &v1, GfVec2f const &v2) |
| | Returns the dot (inner) product of two vectors. More...
|
| |
| float | GfGetLength (GfVec2f const &v) |
| | Returns the geometric length of v. More...
|
| |
| float | GfNormalize (GfVec2f *v, float eps=GF_MIN_VECTOR_LENGTH) |
| | Normalizes *v in place to unit length, returning the length before normalization. More...
|
| |
| GfVec2f | GfGetNormalized (GfVec2f const &v, float eps=GF_MIN_VECTOR_LENGTH) |
| | Returns a normalized (unit-length) vector with the same direction as v. More...
|
| |
| GfVec2f | GfGetProjection (GfVec2f const &a, GfVec2f const &b) |
| | Returns the projection of a onto b. More...
|
| |
| GfVec2f | GfGetComplement (GfVec2f const &a, GfVec2f const &b) |
| | Returns the orthogonal complement of a.GetProjection(b). More...
|
| |
| bool | GfIsClose (GfVec2f const &v1, GfVec2f const &v2, double tolerance) |
| | Tests for equality within a given tolerance, returning true if the length of the difference vector is less than or equal to tolerance. More...
|
| |
◆ GfCompDiv()
Returns component-wise quotient of vectors v1 and v2.
Definition at line 324 of file vec2f.h.
◆ GfCompMult()
Returns component-wise multiplication of vectors v1 and v2.
Definition at line 315 of file vec2f.h.
◆ GfDot()
Returns the dot (inner) product of two vectors.
Definition at line 333 of file vec2f.h.
◆ GfGetComplement()
Returns the orthogonal complement of a.GetProjection(b).
That is:
Definition at line 378 of file vec2f.h.
◆ GfGetLength()
| float GfGetLength |
( |
GfVec2f const & |
v | ) |
|
|
inline |
Returns the geometric length of v.
Definition at line 340 of file vec2f.h.
◆ GfGetNormalized()
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 358 of file vec2f.h.
◆ GfGetProjection()
Returns the projection of a onto b.
That is:
Definition at line 368 of file vec2f.h.
◆ GfIsClose()
| bool GfIsClose |
( |
GfVec2f const & |
v1, |
|
|
GfVec2f 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 386 of file vec2f.h.
◆ GfNormalize()
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 349 of file vec2f.h.