/* * Box.hpp * * Created on: Jun 30, 2010 * Author: crueger */ #ifndef BOX_HPP_ #define BOX_HPP_ #include "Matrix.hpp" class Box { public: Box(); virtual ~Box(); const Matrix &getM(); const Matrix &getMinv(); void setM(Matrix); private: Matrix *M; //!< Defines the layout of the box Matrix *Minv; //!< Inverse of M to avoid recomputation }; #endif /* BOX_HPP_ */