Fill in missing Vector4 symbols
Add assignment and call operators, bool operators, etc
This commit is contained in:
parent
49d097a803
commit
620d5a5bc6
2 changed files with 87 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue