2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2006-02-01 00:09:52 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
2006-02-01 00:09:52 +01: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,
|
2006-02-01 00:09:52 +01: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.
|
2006-02-01 00:09:52 +01: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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2006-02-01 00:09:52 +01:00
|
|
|
//$Id: mapnik_envelope.cc 27 2005-03-30 21:45:40Z pavlenko $
|
|
|
|
|
|
|
|
#include <boost/python.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/envelope.hpp>
|
2006-02-01 00:09:52 +01:00
|
|
|
|
|
|
|
using mapnik::coord;
|
|
|
|
using mapnik::Envelope;
|
|
|
|
|
|
|
|
struct envelope_pickle_suite : boost::python::pickle_suite
|
|
|
|
{
|
|
|
|
static boost::python::tuple
|
|
|
|
getinitargs(const Envelope<double>& e)
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
|
|
|
return boost::python::make_tuple(e.minx(),e.miny(),e.maxx(),e.maxy());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//define overloads here
|
|
|
|
void (Envelope<double>::*width_p1)(double) = &Envelope<double>::width;
|
|
|
|
double (Envelope<double>::*width_p2)() const = &Envelope<double>::width;
|
|
|
|
|
|
|
|
void (Envelope<double>::*height_p1)(double) = &Envelope<double>::height;
|
|
|
|
double (Envelope<double>::*height_p2)() const = &Envelope<double>::height;
|
|
|
|
|
|
|
|
void (Envelope<double>::*expand_to_include_p1)(double,double) = &Envelope<double>::expand_to_include;
|
|
|
|
void (Envelope<double>::*expand_to_include_p2)(coord<double,2> const& ) = &Envelope<double>::expand_to_include;
|
|
|
|
void (Envelope<double>::*expand_to_include_p3)(Envelope<double> const& ) = &Envelope<double>::expand_to_include;
|
|
|
|
|
|
|
|
bool (Envelope<double>::*contains_p1)(double,double) const = &Envelope<double>::contains;
|
|
|
|
bool (Envelope<double>::*contains_p2)(coord<double,2> const&) const = &Envelope<double>::contains;
|
|
|
|
bool (Envelope<double>::*contains_p3)(Envelope<double> const&) const = &Envelope<double>::contains;
|
|
|
|
|
|
|
|
bool (Envelope<double>::*intersects_p1)(double,double) const = &Envelope<double>::intersects;
|
|
|
|
bool (Envelope<double>::*intersects_p2)(coord<double,2> const&) const = &Envelope<double>::intersects;
|
|
|
|
bool (Envelope<double>::*intersects_p3)(Envelope<double> const&) const = &Envelope<double>::intersects;
|
|
|
|
|
|
|
|
|
|
|
|
void export_envelope()
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
2006-10-03 10:44:04 +02:00
|
|
|
class_<Envelope<double> >("Envelope",
|
|
|
|
"A spacial envelope (i.e. bounding box) "
|
|
|
|
"which also defines some basic operators." ,
|
|
|
|
init<double,double,double,double>())
|
2006-02-01 00:09:52 +01:00
|
|
|
.def(init<>())
|
2006-10-03 10:44:04 +02:00
|
|
|
.def(init<const coord<double,2>&, const coord<double,2>&>())
|
2006-03-28 03:01:00 +02:00
|
|
|
.add_property("minx",&Envelope<double>::minx, "X coordinate for the lower left corner")
|
|
|
|
.add_property("miny",&Envelope<double>::miny, "Y coordinate for the lower left corner")
|
|
|
|
.add_property("maxx",&Envelope<double>::maxx, "X coordinate for the upper right corner")
|
|
|
|
.add_property("maxy",&Envelope<double>::maxy, "Y coordinate for the upper right corner")
|
2006-02-01 00:09:52 +01:00
|
|
|
.def("center",&Envelope<double>::center)
|
2006-10-03 10:44:04 +02:00
|
|
|
.def("center",&Envelope<double>::re_center)
|
|
|
|
.def("width",width_p1)
|
|
|
|
.def("width",width_p2)
|
|
|
|
.def("height",height_p1)
|
|
|
|
.def("height",height_p2)
|
|
|
|
.def("expand_to_include",expand_to_include_p1)
|
|
|
|
.def("expand_to_include",expand_to_include_p2)
|
|
|
|
.def("expand_to_include",expand_to_include_p3)
|
|
|
|
.def("contains",contains_p1)
|
|
|
|
.def("contains",contains_p2)
|
|
|
|
.def("contains",contains_p3)
|
|
|
|
.def("intersects",intersects_p1)
|
|
|
|
.def("intersects",intersects_p2)
|
|
|
|
.def("intersects",intersects_p3)
|
2006-10-16 15:44:52 +02:00
|
|
|
.def(self == self) // __eq__
|
|
|
|
.def(self + self) // __add__
|
|
|
|
.def(self - self) // __sub__
|
|
|
|
.def(self * float()) // __mult__
|
|
|
|
.def(float() * self)
|
|
|
|
.def(self / float()) // __div__
|
2006-02-01 00:09:52 +01:00
|
|
|
.def_pickle(envelope_pickle_suite())
|
|
|
|
;
|
|
|
|
}
|