#include <algorithm>
#include <cmath>
+#include <stdexcept>
#include <msp/linal/vector.h>
#include "ray.h"
#include "shape.h"
template<typename T, unsigned D>
inline HyperBox<T, D>::HyperBox(const LinAl::Vector<T, D> &d):
dimensions(d)
-{ }
+{
+ for(unsigned i=0; i<D; ++i)
+ if(dimensions[i]<=T(0))
+ throw std::invalid_argument("HyperBox::HyperBox");
+}
template<typename T, unsigned D>
inline HyperBox<T, D> *HyperBox<T, D>::clone() const
#define MSP_GEOMETRY_HYPERSPHERE_H_
#include <cmath>
+#include <stdexcept>
#include <msp/linal/vector.h>
#include "hyperbox.h"
#include "ray.h"
template<typename T, unsigned D>
inline HyperSphere<T, D>::HyperSphere(T r):
radius(r)
-{ }
+{
+ if(r<=T(0))
+ throw std::invalid_argument("HyperSphere::HyperShpere");
+}
template<typename T, unsigned D>
inline HyperSphere<T, D> *HyperSphere<T, D>::clone() const