diff options
Diffstat (limited to 'gui/quadtree.h')
-rw-r--r-- | gui/quadtree.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/quadtree.h b/gui/quadtree.h index b3ebf81c..a6c38a85 100644 --- a/gui/quadtree.h +++ b/gui/quadtree.h @@ -50,7 +50,6 @@ template <typename CoordinateT, typename ElementT> class QuadTreeNode { } - BoundingBox() : x0_(pinf), y0_(pinf), x1_(ninf), y1_(ninf) {} BoundingBox(const BoundingBox &other) : x0_(other.x0_), y0_(other.y0_), x1_(other.x1_), y1_(other.y1_) {} @@ -83,7 +82,7 @@ template <typename CoordinateT, typename ElementT> class QuadTreeNode CoordinateT y0() const { return y0_; } CoordinateT x1() const { return x1_; } CoordinateT y1() const { return y1_; } - + void setX0(CoordinateT v) { x0_ = v; } void setY0(CoordinateT v) { y0_ = v; } void setX1(CoordinateT v) { x1_ = v; } |