|
| EZ_DECLARE_POD_TYPE () |
|
| ezVec2Template () |
| default-constructed vector is uninitialized (for speed)
|
|
| ezVec2Template (Type x, Type y) |
| Initializes the vector with x,y.
|
|
| ezVec2Template (Type v) |
| Initializes all components with xy.
|
|
const ezVec3Template< Type > | GetAsVec3 (Type z) const |
| Returns an ezVec3Template with x,y from this vector and z set by the parameter.
|
|
const ezVec4Template< Type > | GetAsVec4 (Type z, Type w) const |
| Returns an ezVec4Template with x,y from this vector and z and w set by the parameters.
|
|
const Type * | GetData () const |
| Returns the data as an array.
|
|
Type * | GetData () |
| Returns the data as an array.
|
|
void | Set (Type xy) |
| Sets all components to this value.
|
|
void | Set (Type x, Type y) |
| Sets the vector to these values.
|
|
void | SetZero () |
| Sets the vector to all zero.
|
|
EZ_DECLARE_IF_FLOAT_TYPE Type | GetLength () const |
| Returns the length of the vector.
|
|
EZ_DECLARE_IF_FLOAT_TYPE Type | GetDistanceTo (const ezVec2Template< Type > &rhs) const |
| Returns the length between this position and rhs.
|
|
EZ_DECLARE_IF_FLOAT_TYPE Type | GetSquaredDistanceTo (const ezVec2Template< Type > &rhs) const |
| Returns the squared length between this position and rhs.
|
|
EZ_DECLARE_IF_FLOAT_TYPE ezResult | SetLength (Type fNewLength, Type fEpsilon=ezMath::DefaultEpsilon< Type >()) |
| Tries to rescale the vector to the given length. If the vector is too close to zero, EZ_FAILURE is returned and the vector is set to zero.
|
|
Type | GetLengthSquared () const |
| Returns the squared length. Faster, since no square-root is taken. Useful, if one only wants to compare the lengths of two vectors.
|
|
EZ_DECLARE_IF_FLOAT_TYPE Type | GetLengthAndNormalize () |
| Normalizes this vector and returns its previous length in one operation. More efficient than calling GetLength and then Normalize.
|
|
const EZ_DECLARE_IF_FLOAT_TYPE ezVec2Template< Type > | GetNormalized () const |
| Returns a normalized version of this vector, leaves the vector itself unchanged.
|
|
EZ_DECLARE_IF_FLOAT_TYPE void | Normalize () |
| Normalizes this vector.
|
|
EZ_DECLARE_IF_FLOAT_TYPE ezResult | NormalizeIfNotZero (const ezVec2Template< Type > &vFallback=ezVec2Template< Type >(1, 0), Type fEpsilon=ezMath::DefaultEpsilon< Type >()) |
| Tries to normalize this vector. If the vector is too close to zero, EZ_FAILURE is returned and the vector is set to the given fallback value.
|
|
bool | IsZero () const |
| Returns, whether this vector is (0, 0).
|
|
bool | IsZero (Type fEpsilon) const |
| Returns, whether this vector is (0, 0) within a certain threshold.
|
|
EZ_DECLARE_IF_FLOAT_TYPE bool | IsNormalized (Type fEpsilon=ezMath::HugeEpsilon< Type >()) const |
| Returns, whether the squared length of this vector is between 0.999f and 1.001f. More...
|
|
bool | IsNaN () const |
| Returns true, if any of x or y is NaN.
|
|
bool | IsValid () const |
| Checks that all components are finite numbers.
|
|
const ezVec2Template< Type > | operator- () const |
| Returns the negation of this vector.
|
|
void | operator+= (const ezVec2Template< Type > &vCc) |
| Adds cc component-wise to this vector.
|
|
void | operator-= (const ezVec2Template< Type > &vCc) |
| Subtracts cc component-wise from this vector.
|
|
void | operator*= (Type f) |
| Multiplies all components of this vector with f.
|
|
void | operator/= (Type f) |
| Divides all components of this vector by f.
|
|
bool | IsIdentical (const ezVec2Template< Type > &rhs) const |
| Equality Check (bitwise)
|
|
bool | IsEqual (const ezVec2Template< Type > &rhs, Type fEpsilon) const |
| Equality Check with epsilon.
|
|
ezAngle | GetAngleBetween (const ezVec2Template< Type > &rhs) const |
| Returns the positive angle between *this and rhs.
|
|
Type | Dot (const ezVec2Template< Type > &rhs) const |
| Returns the Dot-product of the two vectors (commutative, order does not matter)
|
|
const ezVec2Template< Type > | CompMin (const ezVec2Template< Type > &rhs) const |
| Returns the component-wise minimum of *this and rhs.
|
|
const ezVec2Template< Type > | CompMax (const ezVec2Template< Type > &rhs) const |
| Returns the component-wise maximum of *this and rhs.
|
|
const ezVec2Template< Type > | CompClamp (const ezVec2Template< Type > &vLow, const ezVec2Template< Type > &vHigh) const |
| Returns the component-wise clamped value of *this between low and high.
|
|
const ezVec2Template< Type > | CompMul (const ezVec2Template< Type > &rhs) const |
| Returns the component-wise multiplication of *this and rhs.
|
|
const ezVec2Template< Type > | CompDiv (const ezVec2Template< Type > &rhs) const |
| Returns the component-wise division of *this and rhs.
|
|
const ezVec2Template< Type > | Abs () const |
| brief Returns the component-wise absolute of *this.
|
|
EZ_DECLARE_IF_FLOAT_TYPE void | MakeOrthogonalTo (const ezVec2Template< Type > &vNormal) |
| Modifies this direction vector to be orthogonal to the given (normalized) direction vector. The result is NOT normalized. More...
|
|
const ezVec2Template< Type > | GetOrthogonalVector () const |
| Returns some arbitrary vector orthogonal to this one. The vector is NOT normalized.
|
|
const EZ_DECLARE_IF_FLOAT_TYPE ezVec2Template< Type > | GetReflectedVector (const ezVec2Template< Type > &vNormal) const |
| Returns this vector reflected at vNormal.
|
|
template<typename Type>
class ezVec2Template< Type >
A 2-component vector class.