mapnik/src/box2d.cpp

336 lines
6.5 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
2005-06-14 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
2005-06-14 17:06:59 +02:00
//$Id: envelope.cpp 17 2005-03-08 23:58:43Z pavlenko $
2009-12-16 21:02:06 +01:00
#include <mapnik/box2d.hpp>
2005-06-14 17:06:59 +02:00
namespace mapnik
{
2010-06-02 13:03:30 +02:00
template <typename T>
box2d<T>::box2d()
:minx_(0),miny_(0),maxx_(-1),maxy_(-1) {}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
box2d<T>::box2d(T minx_,T miny_,T maxx_,T maxy_)
{
init(minx_,miny_,maxx_,maxy_);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
box2d<T>::box2d(const coord<T,2> &c0,const coord<T,2> &c1)
{
init(c0.x,c0.y,c1.x,c1.y);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
box2d<T>::box2d(const box2d &rhs)
{
init(rhs.minx_,rhs.miny_,rhs.maxx_,rhs.maxy_);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
bool box2d<T>::operator==(const box2d<T>& other) const
{
return minx_==other.minx_ &&
miny_==other.miny_ &&
maxx_==other.maxx_ &&
maxy_==other.maxy_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
T box2d<T>::minx() const
{
return minx_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
T box2d<T>::maxx() const
{
return maxx_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
T box2d<T>::miny() const
{
return miny_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
T box2d<T>::maxy() const
{
return maxy_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
T box2d<T>::width() const
{
return maxx_-minx_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
T box2d<T>::height() const
{
return maxy_-miny_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
void box2d<T>::width(T w)
{
T cx=center().x;
minx_=static_cast<T>(cx-w*0.5);
maxx_=static_cast<T>(cx+w*0.5);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
void box2d<T>::height(T h)
{
T cy=center().y;
miny_=static_cast<T>(cy-h*0.5);
maxy_=static_cast<T>(cy+h*0.5);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
coord<T,2> box2d<T>::center() const
{
return coord<T,2>(static_cast<T>(0.5*(minx_+maxx_)),
static_cast<T>(0.5*(miny_+maxy_)));
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
void box2d<T>::expand_to_include(const coord<T,2>& c)
{
expand_to_include(c.x,c.y);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
void box2d<T>::expand_to_include(T x,T y)
{
if (x<minx_) minx_=x;
if (x>maxx_) maxx_=x;
if (y<miny_) miny_=y;
if (y>maxy_) maxy_=y;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
void box2d<T>::expand_to_include(const box2d<T> &other)
{
if (other.minx_<minx_) minx_=other.minx_;
if (other.maxx_>maxx_) maxx_=other.maxx_;
if (other.miny_<miny_) miny_=other.miny_;
if (other.maxy_>maxy_) maxy_=other.maxy_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
bool box2d<T>::contains(const coord<T,2> &c) const
{
return contains(c.x,c.y);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
bool box2d<T>::contains(T x,T y) const
{
return x>=minx_ && x<=maxx_ && y>=miny_ && y<=maxy_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
bool box2d<T>::contains(const box2d<T> &other) const
{
return other.minx_>=minx_ &&
other.maxx_<=maxx_ &&
other.miny_>=miny_ &&
other.maxy_<=maxy_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
bool box2d<T>::intersects(const coord<T,2> &c) const
{
return intersects(c.x,c.y);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
bool box2d<T>::intersects(T x,T y) const
{
return !(x>maxx_ || x<minx_ || y>maxy_ || y<miny_);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
bool box2d<T>::intersects(const box2d<T> &other) const
{
return !(other.minx_>maxx_ || other.maxx_<minx_ ||
other.miny_>maxy_ || other.maxy_<miny_);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
box2d<T> box2d<T>::intersect(const box2d_type& other) const
{
if (intersects(other)) {
T x0=std::max(minx_,other.minx_);
T y0=std::max(miny_,other.miny_);
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
T x1=std::min(maxx_,other.maxx_);
T y1=std::min(maxy_,other.maxy_);
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
return box2d<T>(x0,y0,x1,y1);
} else {
return box2d<T>();
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
void box2d<T>::re_center(T cx,T cy)
{
T dx=cx-center().x;
T dy=cy-center().y;
minx_+=dx;
miny_+=dy;
maxx_+=dx;
maxy_+=dy;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
template <typename T>
#if !defined(__SUNPRO_CC)
2010-06-02 13:03:30 +02:00
inline
#endif
2010-06-02 13:03:30 +02:00
void box2d<T>::init(T x0,T y0,T x1,T y1)
{
if (x0<x1)
2005-06-14 17:06:59 +02:00
{
2010-06-02 13:03:30 +02:00
minx_=x0;maxx_=x1;
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
else
2006-10-16 15:31:52 +02:00
{
2010-06-02 13:03:30 +02:00
minx_=x1;maxx_=x0;
2006-10-16 15:31:52 +02:00
}
2010-06-02 13:03:30 +02:00
if (y0<y1)
2006-10-16 15:31:52 +02:00
{
2010-06-02 13:03:30 +02:00
miny_=y0;maxy_=y1;
2006-10-16 15:31:52 +02:00
}
2010-06-02 13:03:30 +02:00
else
2006-10-16 15:31:52 +02:00
{
2010-06-02 13:03:30 +02:00
miny_=y1;maxy_=y0;
2006-10-16 15:31:52 +02:00
}
2010-06-02 13:03:30 +02:00
}
template <typename T>
box2d<T>& box2d<T>::operator+=(box2d<T> const& other)
{
expand_to_include(other);
return *this;
}
template <typename T>
box2d<T>& box2d<T>::operator-=(box2d<T> const& other)
{
// not sure what to do here. intersect?
return *this;
}
template <typename T>
box2d<T>& box2d<T>::operator*=(T t)
{
coord<T,2> c = center();
T sx = static_cast<T>(0.5 * width() * t);
T sy = static_cast<T>(0.5 * height() * t);
minx_ = c.x - sx;
maxx_ = c.x + sx;
miny_ = c.y - sy;
maxy_ = c.y + sy;
return *this;
}
2010-06-02 13:03:30 +02:00
template <typename T>
box2d<T>& box2d<T>::operator/=(T t)
{
coord<T,2> c = center();
T sx = static_cast<T>(0.5 * width() / t);
T sy = static_cast<T>(0.5 * height() / t);
minx_ = c.x - sx;
maxx_ = c.x + sx;
miny_ = c.y - sy;
maxy_ = c.y + sy;
return *this;
}
2006-10-16 15:31:52 +02:00
2010-06-02 13:03:30 +02:00
template class box2d<int>;
template class box2d<double>;
2005-06-14 17:06:59 +02:00
}