Renamed x(), y(), and z() to getX(), getY(), and getZ()

This commit is contained in:
David Williams
2008-05-26 19:49:21 +00:00
parent 2745d52dc5
commit d0ffdee870
9 changed files with 92 additions and 92 deletions

View File

@ -62,20 +62,20 @@ namespace PolyVox
Vector<Size,Type>& operator*=(const Type& rhs) throw();
///Division and Assignment Operator.
Vector<Size,Type>& operator/=(const Type& rhs) throw();
///Element Access
Type operator()(boost::uint32_t index) const throw();
///Element Access
Type getElement(boost::uint32_t index) const throw();
///Get the x component of the vector.
Type x(void) const throw();
Type getX(void) const throw();
///Get the y component of the vector.
Type y(void) const throw();
Type getY(void) const throw();
///Get the z component of the vector.
Type z(void) const throw();
Type getZ(void) const throw();
///Get the w component of the vector.
Type w(void) const throw();
Type getW(void) const throw();
///Element Access
void set(boost::uint32_t index, Type tValue) throw();
void setElement(boost::uint32_t index, Type tValue) throw();
///Set the x component of the vector.
void setX(Type tX) throw();
///Set the y component of the vector.