Fill in missing Vector4 symbols

Add assignment and call operators, bool operators, etc
This commit is contained in:
Eryn Wells 2014-08-10 11:38:55 -07:00
parent 49d097a803
commit 620d5a5bc6
2 changed files with 87 additions and 0 deletions

View file

@ -33,6 +33,12 @@ struct Vector4
Double Y() const;
Double& Z();
Double Z() const;
Double &operator()(UInt i);
Double operator()(UInt i) const;
/** Get the underlying C array. */
const Double *CArray() const;
/** @} */
bool operator==(const Vector4 &rhs) const;