COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/lemon/xy.h @ 1257:7101e2c3a881

Last change on this file since 1257:7101e2c3a881 was 1257:7101e2c3a881, checked in by Alpar Juttner, 19 years ago
  • several missing 'const' added
  • value of xy is undefined by default
File size: 7.8 KB
RevLine 
[906]1/* -*- C++ -*-
[921]2 * src/lemon/xy.h - Part of LEMON, a generic C++ optimization library
[906]3 *
[1164]4 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
[906]5 * (Egervary Combinatorial Optimization Research Group, EGRES).
6 *
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
10 *
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
13 * purpose.
14 *
15 */
16
[921]17#ifndef LEMON_XY_H
18#define LEMON_XY_H
[201]19
20#include <iostream>
21
[491]22///\ingroup misc
[249]23///\file
24///\brief A simple two dimensional vector and a bounding box implementation
25///
[921]26/// The class \ref lemon::xy "xy" implements
[249]27///a two dimensional vector with the usual
28/// operations.
29///
[921]30/// The class \ref lemon::BoundingBox "BoundingBox" can be used to determine
31/// the rectangular bounding box a set of \ref lemon::xy "xy"'s.
[458]32///
33///\author Attila Bernath
[249]34
35
[921]36namespace lemon {
[431]37
38  /// \addtogroup misc
39  /// @{
40
[1257]41  /// A simple two dimensional vector (plainvector) implementation
[242]42
[1257]43  /// A simple two dimensional vector (plainvector) implementation
[458]44  ///with the usual vector
45  /// operators.
46  ///
47  ///\author Attila Bernath
[207]48  template<typename T>
49    class xy {
[201]50
[207]51    public:
[240]52
[987]53      typedef T Value;
[964]54
[240]55      T x,y;     
[207]56     
[1257]57      ///Default constructor
58      xy() {}
[201]59
[240]60      ///Constructing the instance from coordinates
[514]61      xy(T a, T b) : x(a), y(b) { }
[201]62
63
[1049]64      ///Conversion constructor
65      template<class TT> xy(const xy<TT> &p) : x(p.x), y(p.y) {}
66
[207]67      ///Gives back the square of the norm of the vector
[1257]68      T normSquare() const {
[240]69        return x*x+y*y;
[207]70      };
[201]71 
[207]72      ///Increments the left hand side by u
[1257]73      xy<T>& operator +=(const xy<T>& u) {
[240]74        x += u.x;
75        y += u.y;
[207]76        return *this;
77      };
[201]78 
[207]79      ///Decrements the left hand side by u
[1257]80      xy<T>& operator -=(const xy<T>& u) {
[240]81        x -= u.x;
82        y -= u.y;
[207]83        return *this;
84      };
[201]85
[207]86      ///Multiplying the left hand side with a scalar
[1257]87      xy<T>& operator *=(const T &u) {
[240]88        x *= u;
89        y *= u;
[207]90        return *this;
91      };
92
93      ///Dividing the left hand side by a scalar
[1257]94      xy<T>& operator /=(const T &u) {
[240]95        x /= u;
96        y /= u;
[207]97        return *this;
98      };
[201]99 
[207]100      ///Returns the scalar product of two vectors
[1257]101      T operator *(const xy<T>& u) const {
[240]102        return x*u.x+y*u.y;
[207]103      };
[201]104 
[207]105      ///Returns the sum of two vectors
106      xy<T> operator+(const xy<T> &u) const {
107        xy<T> b=*this;
108        return b+=u;
109      };
[201]110
[1049]111      ///Returns the neg of the vectors
112      xy<T> operator-() const {
113        xy<T> b=*this;
114        b.x=-b.x; b.y=-b.y;
115        return b;
116      };
117
[207]118      ///Returns the difference of two vectors
119      xy<T> operator-(const xy<T> &u) const {
120        xy<T> b=*this;
121        return b-=u;
122      };
[201]123
[207]124      ///Returns a vector multiplied by a scalar
125      xy<T> operator*(const T &u) const {
126        xy<T> b=*this;
127        return b*=u;
128      };
[201]129
[207]130      ///Returns a vector divided by a scalar
131      xy<T> operator/(const T &u) const {
132        xy<T> b=*this;
133        return b/=u;
134      };
[201]135
[207]136      ///Testing equality
[1257]137      bool operator==(const xy<T> &u) const {
[240]138        return (x==u.x) && (y==u.y);
[207]139      };
[201]140
[207]141      ///Testing inequality
[1257]142      bool operator!=(xy u) const {
[240]143        return  (x!=u.x) || (y!=u.y);
[207]144      };
[201]145
[207]146    };
[201]147
[1071]148  ///Returns a vector multiplied by a scalar
[1083]149
150  ///Returns a vector multiplied by a scalar
151  ///\relates xy
[1071]152  template<typename T> xy<T> operator*(const T &u,const xy<T> &x) {
153    return x*u;
154  };
155
[814]156  ///Read a plainvector from a stream
157
[967]158  ///Read a plainvector from a stream
[814]159  ///\relates xy
160  ///
[207]161  template<typename T>
162  inline
163  std::istream& operator>>(std::istream &is, xy<T> &z)
164  {
[240]165
166    is >> z.x >> z.y;
[207]167    return is;
168  }
[201]169
[814]170  ///Write a plainvector to a stream
171
[967]172  ///Write a plainvector to a stream
[814]173  ///\relates xy
174  ///
[207]175  template<typename T>
176  inline
177  std::ostream& operator<<(std::ostream &os, xy<T> z)
178  {
[240]179    os << "(" << z.x << ", " << z.y << ")";
[207]180    return os;
181  }
182
[1202]183  ///Rotate by 90 degrees
184
185  ///Returns its parameter rotated by 90 degrees in positive direction.
186  ///\relates xy
187  ///
188  template<typename T>
189  inline xy<T> rot90(const xy<T> &z)
190  {
191    return xy<T>(-z.y,z.x);
192  }
193
194  ///Rotate by 270 degrees
195
196  ///Returns its parameter rotated by 90 degrees in negative direction.
197  ///\relates xy
198  ///
199  template<typename T>
200  inline xy<T> rot270(const xy<T> &z)
201  {
202    return xy<T>(z.y,-z.x);
203  }
204
205 
[244]206
[458]207  /// A class to calculate or store the bounding box of plainvectors.
208
209  /// A class to calculate or store the bounding box of plainvectors.
210  ///
211  ///\author Attila Bernath
[244]212  template<typename T>
213    class BoundingBox {
214      xy<T> bottom_left, top_right;
215      bool _empty;
216    public:
217     
218      ///Default constructor: an empty bounding box
219      BoundingBox() { _empty = true; }
220
221      ///Constructing the instance from one point
222      BoundingBox(xy<T> a) { bottom_left=top_right=a; _empty = false; }
223
224      ///Is there any point added
225      bool empty() const {
226        return _empty;
227      }
228
229      ///Gives back the bottom left corner (if the bounding box is empty, then the return value is not defined)
230      xy<T> bottomLeft() const {
231        return bottom_left;
232      };
233
234      ///Gives back the top right corner (if the bounding box is empty, then the return value is not defined)
235      xy<T> topRight() const {
236        return top_right;
237      };
238
[1045]239      ///Gives back the bottom right corner (if the bounding box is empty, then the return value is not defined)
240      xy<T> bottomRight() const {
241        return xy<T>(top_right.x,bottom_left.y);
242      };
243
244      ///Gives back the top left corner (if the bounding box is empty, then the return value is not defined)
245      xy<T> topLeft() const {
246        return xy<T>(bottom_left.x,top_right.y);
247      };
248
249      ///Gives back the bottom of the box (if the bounding box is empty, then the return value is not defined)
250      T bottom() const {
251        return bottom_left.y;
252      };
253
254      ///Gives back the top of the box (if the bounding box is empty, then the return value is not defined)
255      T top() const {
256        return top_right.y;
257      };
258
259      ///Gives back the left side of the box (if the bounding box is empty, then the return value is not defined)
260      T left() const {
261        return bottom_left.x;
262      };
263
264      ///Gives back the right side of the box (if the bounding box is empty, then the return value is not defined)
265      T right() const {
266        return top_right.x;
267      };
268
[1102]269      ///Gives back the height of the box (if the bounding box is empty, then the return value is not defined)
270      T height() const {
271        return top_right.y-bottom_left.y;
272      };
273
274      ///Gives back the width of the box (if the bounding box is empty, then the return value is not defined)
275      T width() const {
276        return top_right.x-bottom_left.x;
277      };
278
[244]279      ///Checks whether a point is inside a bounding box
280      bool inside(const xy<T>& u){
281        if (_empty)
282          return false;
283        else{
284          return ((u.x-bottom_left.x)*(top_right.x-u.x) >= 0 &&
285                  (u.y-bottom_left.y)*(top_right.y-u.y) >= 0 );
286        }
287      }
288 
289      ///Increments a bounding box with a point
290      BoundingBox& operator +=(const xy<T>& u){
291        if (_empty){
292          bottom_left=top_right=u;
293          _empty = false;
294        }
295        else{
296          if (bottom_left.x > u.x) bottom_left.x = u.x;
297          if (bottom_left.y > u.y) bottom_left.y = u.y;
298          if (top_right.x < u.x) top_right.x = u.x;
299          if (top_right.y < u.y) top_right.y = u.y;
300        }
301        return *this;
302      };
303 
304      ///Sums a bounding box and a point
305      BoundingBox operator +(const xy<T>& u){
306        BoundingBox b = *this;
307        return b += u;
308      };
309
310      ///Increments a bounding box with an other bounding box
311      BoundingBox& operator +=(const BoundingBox &u){
312        if ( !u.empty() ){
313          *this += u.bottomLeft();
314          *this += u.topRight();
315        }
316        return *this;
317      };
318 
319      ///Sums two bounding boxes
320      BoundingBox operator +(const BoundingBox& u){
321        BoundingBox b = *this;
322        return b += u;
323      };
324
325    };//class Boundingbox
326
327
[431]328  /// @}
[244]329
330
[921]331} //namespace lemon
[201]332
[921]333#endif //LEMON_XY_H
Note: See TracBrowser for help on using the repository browser.