#ifndef STIM_AABB3_H #define STIM_AABB3_H #include #include namespace stim{ template using aabb3 = aabbn; /*/// Structure for a 3D axis aligned bounding box template struct aabb3 : public aabbn{ 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() { } };*/ } #endif