aabb3.h 506 Bytes
#ifndef STIM_AABB3_H
#define STIM_AABB3_H

#include <stim/cuda/cudatools/callable.h>
#include <stim/visualization/aabbn.h>

namespace stim{

	template<typename T>
	using aabb3 = aabbn<T, 3>;
/*/// Structure for a 3D axis aligned bounding box
template<typename T>
struct aabb3 : public aabbn<T, 3>{

	aabb3() : aabbn() {}
	aabb3(T x0, T y0, T z0, T x1, T y1, T z1){
		low[0] = x0;
		low[1] = y0;
		low[2] = z0;
		high[0] = x0;
		high[1] = x1;
		high[2] = x2;
	}

	aabb3 aabbn<T, 3>() {

	}

};*/

}


#endif