COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/lemon/xy.h @ 1035:f2a3426e64e6

Last change on this file since 1035:f2a3426e64e6 was 987:87f7c54892df, checked in by Alpar Juttner, 19 years ago

Naming changes:

File size: 5.6 KB
RevLine 
[906]1/* -*- C++ -*-
[921]2 * src/lemon/xy.h - Part of LEMON, a generic C++ optimization library
[906]3 *
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
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
[458]41  /// A two dimensional vector (plainvector) implementation
[242]42
[458]43  /// A two dimensional vector (plainvector) implementation
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     
57      ///Default constructor: both coordinates become 0
[240]58      xy() : x(0), y(0) {}
[201]59
[240]60      ///Constructing the instance from coordinates
[514]61      xy(T a, T b) : x(a), y(b) { }
[201]62
63
[207]64      ///Gives back the square of the norm of the vector
65      T normSquare(){
[240]66        return x*x+y*y;
[207]67      };
[201]68 
[207]69      ///Increments the left hand side by u
70      xy<T>& operator +=(const xy<T>& u){
[240]71        x += u.x;
72        y += u.y;
[207]73        return *this;
74      };
[201]75 
[207]76      ///Decrements the left hand side by u
77      xy<T>& operator -=(const xy<T>& u){
[240]78        x -= u.x;
79        y -= u.y;
[207]80        return *this;
81      };
[201]82
[207]83      ///Multiplying the left hand side with a scalar
84      xy<T>& operator *=(const T &u){
[240]85        x *= u;
86        y *= u;
[207]87        return *this;
88      };
89
90      ///Dividing the left hand side by a scalar
91      xy<T>& operator /=(const T &u){
[240]92        x /= u;
93        y /= u;
[207]94        return *this;
95      };
[201]96 
[207]97      ///Returns the scalar product of two vectors
98      T operator *(const xy<T>& u){
[240]99        return x*u.x+y*u.y;
[207]100      };
[201]101 
[207]102      ///Returns the sum of two vectors
103      xy<T> operator+(const xy<T> &u) const {
104        xy<T> b=*this;
105        return b+=u;
106      };
[201]107
[207]108      ///Returns the difference of two vectors
109      xy<T> operator-(const xy<T> &u) const {
110        xy<T> b=*this;
111        return b-=u;
112      };
[201]113
[207]114      ///Returns a vector multiplied by a scalar
115      xy<T> operator*(const T &u) const {
116        xy<T> b=*this;
117        return b*=u;
118      };
[201]119
[207]120      ///Returns a vector divided by a scalar
121      xy<T> operator/(const T &u) const {
122        xy<T> b=*this;
123        return b/=u;
124      };
[201]125
[207]126      ///Testing equality
127      bool operator==(const xy<T> &u){
[240]128        return (x==u.x) && (y==u.y);
[207]129      };
[201]130
[207]131      ///Testing inequality
132      bool operator!=(xy u){
[240]133        return  (x!=u.x) || (y!=u.y);
[207]134      };
[201]135
[207]136    };
[201]137
[814]138  ///Read a plainvector from a stream
139
[967]140  ///Read a plainvector from a stream
[814]141  ///\relates xy
142  ///
[207]143  template<typename T>
144  inline
145  std::istream& operator>>(std::istream &is, xy<T> &z)
146  {
[240]147
148    is >> z.x >> z.y;
[207]149    return is;
150  }
[201]151
[814]152  ///Write a plainvector to a stream
153
[967]154  ///Write a plainvector to a stream
[814]155  ///\relates xy
156  ///
[207]157  template<typename T>
158  inline
159  std::ostream& operator<<(std::ostream &os, xy<T> z)
160  {
[240]161    os << "(" << z.x << ", " << z.y << ")";
[207]162    return os;
163  }
164
[244]165
[458]166  /// A class to calculate or store the bounding box of plainvectors.
167
168  /// A class to calculate or store the bounding box of plainvectors.
169  ///
170  ///\author Attila Bernath
[244]171  template<typename T>
172    class BoundingBox {
173      xy<T> bottom_left, top_right;
174      bool _empty;
175    public:
176     
177      ///Default constructor: an empty bounding box
178      BoundingBox() { _empty = true; }
179
180      ///Constructing the instance from one point
181      BoundingBox(xy<T> a) { bottom_left=top_right=a; _empty = false; }
182
183      ///Is there any point added
184      bool empty() const {
185        return _empty;
186      }
187
188      ///Gives back the bottom left corner (if the bounding box is empty, then the return value is not defined)
189      xy<T> bottomLeft() const {
190        return bottom_left;
191      };
192
193      ///Gives back the top right corner (if the bounding box is empty, then the return value is not defined)
194      xy<T> topRight() const {
195        return top_right;
196      };
197
198      ///Checks whether a point is inside a bounding box
199      bool inside(const xy<T>& u){
200        if (_empty)
201          return false;
202        else{
203          return ((u.x-bottom_left.x)*(top_right.x-u.x) >= 0 &&
204                  (u.y-bottom_left.y)*(top_right.y-u.y) >= 0 );
205        }
206      }
207 
208      ///Increments a bounding box with a point
209      BoundingBox& operator +=(const xy<T>& u){
210        if (_empty){
211          bottom_left=top_right=u;
212          _empty = false;
213        }
214        else{
215          if (bottom_left.x > u.x) bottom_left.x = u.x;
216          if (bottom_left.y > u.y) bottom_left.y = u.y;
217          if (top_right.x < u.x) top_right.x = u.x;
218          if (top_right.y < u.y) top_right.y = u.y;
219        }
220        return *this;
221      };
222 
223      ///Sums a bounding box and a point
224      BoundingBox operator +(const xy<T>& u){
225        BoundingBox b = *this;
226        return b += u;
227      };
228
229      ///Increments a bounding box with an other bounding box
230      BoundingBox& operator +=(const BoundingBox &u){
231        if ( !u.empty() ){
232          *this += u.bottomLeft();
233          *this += u.topRight();
234        }
235        return *this;
236      };
237 
238      ///Sums two bounding boxes
239      BoundingBox operator +(const BoundingBox& u){
240        BoundingBox b = *this;
241        return b += u;
242      };
243
244    };//class Boundingbox
245
246
[431]247  /// @}
[244]248
249
[921]250} //namespace lemon
[201]251
[921]252#endif //LEMON_XY_H
Note: See TracBrowser for help on using the repository browser.