2 * src/lemon/xy.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Research Group on Combinatorial Optimization, EGRES).
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.
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
24 ///\brief A simple two dimensional vector and a bounding box implementation
26 /// The class \ref lemon::xy "xy" implements
27 ///a two dimensional vector with the usual
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.
33 ///\author Attila Bernath
41 /// A simple two dimensional vector (plainvector) implementation
43 /// A simple two dimensional vector (plainvector) implementation
44 ///with the usual vector
47 ///\author Attila Bernath
57 ///Default constructor
60 ///Constructing the instance from coordinates
61 xy(T a, T b) : x(a), y(b) { }
64 ///Conversion constructor
65 template<class TT> xy(const xy<TT> &p) : x(p.x), y(p.y) {}
67 ///Gives back the square of the norm of the vector
68 T normSquare() const {
72 ///Increments the left hand side by u
73 xy<T>& operator +=(const xy<T>& u) {
79 ///Decrements the left hand side by u
80 xy<T>& operator -=(const xy<T>& u) {
86 ///Multiplying the left hand side with a scalar
87 xy<T>& operator *=(const T &u) {
93 ///Dividing the left hand side by a scalar
94 xy<T>& operator /=(const T &u) {
100 ///Returns the scalar product of two vectors
101 T operator *(const xy<T>& u) const {
105 ///Returns the sum of two vectors
106 xy<T> operator+(const xy<T> &u) const {
111 ///Returns the neg of the vectors
112 xy<T> operator-() const {
118 ///Returns the difference of two vectors
119 xy<T> operator-(const xy<T> &u) const {
124 ///Returns a vector multiplied by a scalar
125 xy<T> operator*(const T &u) const {
130 ///Returns a vector divided by a scalar
131 xy<T> operator/(const T &u) const {
137 bool operator==(const xy<T> &u) const {
138 return (x==u.x) && (y==u.y);
141 ///Testing inequality
142 bool operator!=(xy u) const {
143 return (x!=u.x) || (y!=u.y);
148 ///Returns a vector multiplied by a scalar
150 ///Returns a vector multiplied by a scalar
152 template<typename T> xy<T> operator*(const T &u,const xy<T> &x) {
156 ///Read a plainvector from a stream
158 ///Read a plainvector from a stream
163 std::istream& operator>>(std::istream &is, xy<T> &z)
170 ///Write a plainvector to a stream
172 ///Write a plainvector to a stream
177 std::ostream& operator<<(std::ostream &os, xy<T> z)
179 os << "(" << z.x << ", " << z.y << ")";
183 ///Rotate by 90 degrees
185 ///Returns its parameter rotated by 90 degrees in positive direction.
189 inline xy<T> rot90(const xy<T> &z)
191 return xy<T>(-z.y,z.x);
194 ///Rotate by 270 degrees
196 ///Returns its parameter rotated by 90 degrees in negative direction.
200 inline xy<T> rot270(const xy<T> &z)
202 return xy<T>(z.y,-z.x);
207 /// A class to calculate or store the bounding box of plainvectors.
209 /// A class to calculate or store the bounding box of plainvectors.
211 ///\author Attila Bernath
214 xy<T> bottom_left, top_right;
218 ///Default constructor: an empty bounding box
219 BoundingBox() { _empty = true; }
221 ///Constructing the instance from one point
222 BoundingBox(xy<T> a) { bottom_left=top_right=a; _empty = false; }
224 ///Is there any point added
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 {
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 {
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);
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);
249 ///Gives back the bottom of the box (if the bounding box is empty, then the return value is not defined)
251 return bottom_left.y;
254 ///Gives back the top of the box (if the bounding box is empty, then the return value is not defined)
259 ///Gives back the left side of the box (if the bounding box is empty, then the return value is not defined)
261 return bottom_left.x;
264 ///Gives back the right side of the box (if the bounding box is empty, then the return value is not defined)
269 ///Gives back the height of the box (if the bounding box is empty, then the return value is not defined)
271 return top_right.y-bottom_left.y;
274 ///Gives back the width of the box (if the bounding box is empty, then the return value is not defined)
276 return top_right.x-bottom_left.x;
279 ///Checks whether a point is inside a bounding box
280 bool inside(const xy<T>& u){
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 );
289 ///Increments a bounding box with a point
290 BoundingBox& operator +=(const xy<T>& u){
292 bottom_left=top_right=u;
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;
304 ///Sums a bounding box and a point
305 BoundingBox operator +(const xy<T>& u){
306 BoundingBox b = *this;
310 ///Increments a bounding box with an other bounding box
311 BoundingBox& operator +=(const BoundingBox &u){
313 *this += u.bottomLeft();
314 *this += u.topRight();
319 ///Sums two bounding boxes
320 BoundingBox operator +(const BoundingBox& u){
321 BoundingBox b = *this;
325 };//class Boundingbox
328 ///Map of x-coordinates of an xy<>-map
337 typedef typename M::Value::Value Value;
338 typedef typename M::Key Key;
340 XMap(M &map) : _map(map) {}
341 Value operator[](Key k) const {return _map[k].x;}
342 void set(Key k,Value v) {_map.set(k,typename M::Value(v,_map[k].y));}
345 ///Returns an \ref XMap class
347 ///This function just returns an \ref XMap class.
352 inline XMap<M> xMap(M &m)
357 ///Constant (read only) version of \ref XMap
366 typedef typename M::Value::Value Value;
367 typedef typename M::Key Key;
369 ConstXMap(const M &map) : _map(map) {}
370 Value operator[](Key k) const {return _map[k].x;}
373 ///Returns a \ref ConstXMap class
375 ///This function just returns an \ref ConstXMap class.
378 ///\relates ConstXMap
380 inline ConstXMap<M> xMap(const M &m)
382 return ConstXMap<M>(m);
385 ///Map of y-coordinates of an xy<>-map
394 typedef typename M::Value::Value Value;
395 typedef typename M::Key Key;
397 YMap(M &map) : _map(map) {}
398 Value operator[](Key k) const {return _map[k].y;}
399 void set(Key k,Value v) {_map.set(k,typename M::Value(_map[k].x,v));}
402 ///Returns an \ref YMap class
404 ///This function just returns an \ref YMap class.
409 inline YMap<M> yMap(M &m)
414 ///Constant (read only) version of \ref YMap
423 typedef typename M::Value::Value Value;
424 typedef typename M::Key Key;
426 ConstYMap(const M &map) : _map(map) {}
427 Value operator[](Key k) const {return _map[k].y;}
430 ///Returns a \ref ConstYMap class
432 ///This function just returns an \ref ConstYMap class.
435 ///\relates ConstYMap
437 inline ConstYMap<M> yMap(const M &m)
439 return ConstYMap<M>(m);
443 ///Map of the \ref xy::normSquare() "normSquare()" of an \ref xy "xy"-map
445 ///Map of the \ref xy::normSquare() "normSquare()" of an \ref xy "xy"-map
453 typedef typename M::Value::Value Value;
454 typedef typename M::Key Key;
456 NormSquareMap(const M &map) : _map(map) {}
457 Value operator[](Key k) const {return _map[k].normSquare();}
460 ///Returns a \ref NormSquareMap class
462 ///This function just returns an \ref NormSquareMap class.
465 ///\relates NormSquareMap
467 inline NormSquareMap<M> normSquareMap(const M &m)
469 return NormSquareMap<M>(m);