basin/include/basin/boundingbox.h

20 lines
327 B
C

//
// Created by p on 4/17/19.
//
#ifndef BASIN_BOUNDINGBOX_H
#define BASIN_BOUNDINGBOX_H
struct boundingbox {
double minX;
double maxX;
double minY;
double maxY;
double minZ;
double maxZ;
};
int boundingbox_intersects(struct boundingbox* bb1, struct boundingbox* bb2);
#endif //BASIN_BOUNDINGBOX_H