libSBNW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
box.h
Go to the documentation of this file.
1 /*== SAGITTARIUS =====================================================================
2  * Copyright (c) 2012, Jesse K Medley
3  * All rights reserved.
4 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of The University of Washington nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 //== FILEDOC =========================================================================
29 
34 //== BEGINNING OF CODE ===============================================================
35 
36 #ifndef __SBNW_LAYOUT_BOX_H_
37 #define __SBNW_LAYOUT_BOX_H_
38 
39 //== INCLUDES ========================================================================
40 
42 #include "graphfab/math/min_max.h"
43 
44 //-- C++ code --
45 #ifdef __cplusplus
46 
47 #include <graphfab/layout/point.h>
48 
49 // #include <string>
50 
51 #include <iostream>
52 
53 namespace Graphfab {
54 
55  class Box {
56  public:
57  Box()
58  {}
59 
61  Box(const Point& min, const Point& max)
62  : _min(min), _max(max) { AT(_min.x <= _max.x && _min.y <= _max.y, "Min/max mismatch"); }
63 
65  Box(Real x1, Real y1, Real x2, Real y2)
66  : _min(x1,y1), _max(x2,y2) {
67  if(!(_min.x <= _max.x && _min.y <= _max.y)) {
68  dump(std::cerr);
69  std::cerr << "\n";
70  }
71  AT(_min.x <= _max.x && _min.y <= _max.y, "Min/max mismatch");
72  }
73 
75  const Point& getMin() const { return _min; }
76  Real getMinX() const { return getMin().x; }
77  Real getMinY() const { return getMin().y; }
78 
79  void setMin(const Point& p) { _min = p; }
80 
81  void setMinX(const Real x) { _min.x = x; }
82  void setMinY(const Real y) { _min.y = y; }
83 
85  const Point& getMax() const { return _max; }
86  Real getMaxX() const { return getMax().x; }
87  Real getMaxY() const { return getMax().y; }
88 
89  void setMax(const Point& p) { _max = p; }
90 
91  void setMaxX(const Real x) { _max.x = x; }
92  void setMaxY(const Real y) { _max.y = y; }
93 
94  Point getCenter() const { return (getMax() + getMin())/2.; }
95 
96  Point getFirstQuadCorner() const { return getMax(); }
97  Point getSecondQuadCorner() const { return Point(_min.x, _max.y); }
98  Point getThirdQuadCorner() const { return getMin(); }
99  Point getFourthQuadCorner() const { return Point(_max.x, _min.y); }
100 
102  Point getDiag() const { return getMax() - getMin(); }
103 
105  Real maxDim() const {
106  Real w = _max.x - _min.x;
107  Real h = _max.y - _min.y;
108  return max(w,h);
109  }
110 
112  Real minDim() const {
113  Real w = _max.x - _min.x;
114  Real h = _max.y - _min.y;
115  return min(w,h);
116  }
117 
118  Point getTopRightCorner() const { return Point(_max.x, _min.y); }
119 
120  Point getBottomLeftCorner() const { return Point(_min.x, _max.y); }
121 
123  Real width() const { return _max.x - _min.x; }
124 
126  void setWidth(const Real w) { _max.x = _min.x+w; }
127 
129  Real height() const { return _max.y - _min.y; }
130 
132  void setHeight(const Real w) { _max.y = _min.y+w; }
133 
135  Real area() const {
136  Real w = _max.x - _min.x;
137  Real h = _max.y - _min.y;
138  return w*h;
139  }
140 
142  bool canShrink(const Real v) const {
143  if(_min.x + 2*v <= _max.x && _min.y+2*v <= _max.y)
144  return true;
145  else
146  return false;
147  }
148 
150  Box shrink(const Real v) const {
151  return Box(_min+Point(v,v), _max-Point(v,v));
152  }
153 
155  void shrink_(const Real v) {
156  _min.x += v;
157  _min.y += v;
158  _max.x -= v;
159  _max.y -= v;
160  }
161 
163  Box padded(const Real v) const {
164  return Box(_min-Point(v,v), _max+Point(v,v));
165  }
166 
167  // expand! to contain the other box and this box
168  void expandx(const Box& other) {
169  _min = Point::emin(_min, other._min);
170  _max = Point::emax(_max, other._max);
171  }
172 
173  void displace(const Point& d) {
174  _min += d;
175  _max += d;
176  }
177 
178  void dump(std::ostream& o) const {
179  o << "[" << getMin() << ", " << getMax() << "]";
180  }
181 
182  protected:
184  Point _min, _max;
185  };
186 
188  std::ostream& operator<< (std::ostream& os, const Box& b);
189 
191  std::pair<bool, Point> intersectBoxLine(const Box& b, const Point& u, const Point& v);
192 
193 }
194 
195 #endif
196 
197 #endif
SAGITTARIUS_REAL Real
Make Real visible to C. Consider letting Real lie in top namespace.
Definition: SagittariusCommon.h:136
Definition: SagittariusCommon.cpp:38
Min & max for reals.
First file included.