/* * Values.hpp * * Created on: Jun 7, 2010 * Author: heber */ #ifndef VALUES_HPP_ #define VALUES_HPP_ struct VectorValue { double x; double y; double z; }; struct BoxValue { double xx; double xy; double xz; double yy; double yz; double zz; }; #endif /* VALUES_HPP_ */