21 #ifndef Tulip_OCCLUSIONTEST_H
22 #define Tulip_OCCLUSIONTEST_H
23 #ifndef DOXYGEN_NOTFOR_DEVEL
24 #include <tulip/Rectangle.h>
28 typedef Rectangle<int> RectangleInt2D;
37 struct TLP_GL_SCOPE OcclusionTest {
38 std::vector<RectangleInt2D> data;
53 bool addRectangle(
const RectangleInt2D &rec) {
54 if (!testRectangle(rec)) {
66 bool testRectangle(
const RectangleInt2D &rec) {
68 std::vector<RectangleInt2D>::const_iterator it;
70 for (it=data.begin(); it!=data.end(); ++it) {
71 if (rec.intersect(*it)) {
84 #endif //DOXYGEN_NOTFOR_DEVEL