2 * src/lemon/xy.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Combinatorial Optimization Research Group, 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 two dimensional vector (plainvector) implementation
43 /// A two dimensional vector (plainvector) implementation
44 ///with the usual vector
47 ///\author Attila Bernath
57 ///Default constructor: both coordinates become 0
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
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){
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){
138 return (x==u.x) && (y==u.y);
141 ///Testing inequality
142 bool operator!=(xy u){
143 return (x!=u.x) || (y!=u.y);
148 ///Read a plainvector from a stream
150 ///Read a plainvector from a stream
155 std::istream& operator>>(std::istream &is, xy<T> &z)
162 ///Write a plainvector to a stream
164 ///Write a plainvector to a stream
169 std::ostream& operator<<(std::ostream &os, xy<T> z)
171 os << "(" << z.x << ", " << z.y << ")";
176 /// A class to calculate or store the bounding box of plainvectors.
178 /// A class to calculate or store the bounding box of plainvectors.
180 ///\author Attila Bernath
183 xy<T> bottom_left, top_right;
187 ///Default constructor: an empty bounding box
188 BoundingBox() { _empty = true; }
190 ///Constructing the instance from one point
191 BoundingBox(xy<T> a) { bottom_left=top_right=a; _empty = false; }
193 ///Is there any point added
198 ///Gives back the bottom left corner (if the bounding box is empty, then the return value is not defined)
199 xy<T> bottomLeft() const {
203 ///Gives back the top right corner (if the bounding box is empty, then the return value is not defined)
204 xy<T> topRight() const {
208 ///Gives back the bottom right corner (if the bounding box is empty, then the return value is not defined)
209 xy<T> bottomRight() const {
210 return xy<T>(top_right.x,bottom_left.y);
213 ///Gives back the top left corner (if the bounding box is empty, then the return value is not defined)
214 xy<T> topLeft() const {
215 return xy<T>(bottom_left.x,top_right.y);
218 ///Gives back the bottom of the box (if the bounding box is empty, then the return value is not defined)
220 return bottom_left.y;
223 ///Gives back the top of the box (if the bounding box is empty, then the return value is not defined)
228 ///Gives back the left side of the box (if the bounding box is empty, then the return value is not defined)
230 return bottom_left.x;
233 ///Gives back the right side of the box (if the bounding box is empty, then the return value is not defined)
238 ///Checks whether a point is inside a bounding box
239 bool inside(const xy<T>& u){
243 return ((u.x-bottom_left.x)*(top_right.x-u.x) >= 0 &&
244 (u.y-bottom_left.y)*(top_right.y-u.y) >= 0 );
248 ///Increments a bounding box with a point
249 BoundingBox& operator +=(const xy<T>& u){
251 bottom_left=top_right=u;
255 if (bottom_left.x > u.x) bottom_left.x = u.x;
256 if (bottom_left.y > u.y) bottom_left.y = u.y;
257 if (top_right.x < u.x) top_right.x = u.x;
258 if (top_right.y < u.y) top_right.y = u.y;
263 ///Sums a bounding box and a point
264 BoundingBox operator +(const xy<T>& u){
265 BoundingBox b = *this;
269 ///Increments a bounding box with an other bounding box
270 BoundingBox& operator +=(const BoundingBox &u){
272 *this += u.bottomLeft();
273 *this += u.topRight();
278 ///Sums two bounding boxes
279 BoundingBox operator +(const BoundingBox& u){
280 BoundingBox b = *this;
284 };//class Boundingbox