/***************************************************************************** * * This file is part of Mapnik (c++ mapping toolkit) * * Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon * * 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, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * 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 * *****************************************************************************/ //$Id: mapnik_envelope.cc 27 2005-03-30 21:45:40Z pavlenko $ #include #include using mapnik::coord; using mapnik::Envelope; struct envelope_pickle_suite : boost::python::pickle_suite { static boost::python::tuple getinitargs(const Envelope& e) { using namespace boost::python; return boost::python::make_tuple(e.minx(),e.miny(),e.maxx(),e.maxy()); } }; //define overloads here void (Envelope::*width_p1)(double) = &Envelope::width; double (Envelope::*width_p2)() const = &Envelope::width; void (Envelope::*height_p1)(double) = &Envelope::height; double (Envelope::*height_p2)() const = &Envelope::height; void (Envelope::*expand_to_include_p1)(double,double) = &Envelope::expand_to_include; void (Envelope::*expand_to_include_p2)(coord const& ) = &Envelope::expand_to_include; void (Envelope::*expand_to_include_p3)(Envelope const& ) = &Envelope::expand_to_include; bool (Envelope::*contains_p1)(double,double) const = &Envelope::contains; bool (Envelope::*contains_p2)(coord const&) const = &Envelope::contains; bool (Envelope::*contains_p3)(Envelope const&) const = &Envelope::contains; bool (Envelope::*intersects_p1)(double,double) const = &Envelope::intersects; bool (Envelope::*intersects_p2)(coord const&) const = &Envelope::intersects; bool (Envelope::*intersects_p3)(Envelope const&) const = &Envelope::intersects; void export_envelope() { using namespace boost::python; class_ >("Envelope","A spacial envelope (i.e. bounding box) which also defines some basic operators.",init()) .def(init<>()) .def(init&, const coord&>()) .add_property("minx",&Envelope::minx, "X coordinate for the lower left corner") .add_property("miny",&Envelope::miny, "Y coordinate for the lower left corner") .add_property("maxx",&Envelope::maxx, "X coordinate for the upper right corner") .add_property("maxy",&Envelope::maxy, "Y coordinate for the upper right corner") .def("center",&Envelope::center) .def("center",&Envelope::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) .def(self == self) .def_pickle(envelope_pickle_suite()) ; }