re-expose geometry_empty test / fix compile
This commit is contained in:
parent
d4ce36a41e
commit
bc77157c57
2 changed files with 3 additions and 87 deletions
|
@ -1,84 +0,0 @@
|
||||||
/*****************************************************************************
|
|
||||||
*
|
|
||||||
* This file is part of Mapnik (c++ mapping toolkit)
|
|
||||||
*
|
|
||||||
* Copyright (C) 2015 Artem Pavlenko
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
*
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#ifndef MAPNIK_GEOMETRY_EMPTY_HPP
|
|
||||||
#define MAPNIK_GEOMETRY_EMPTY_HPP
|
|
||||||
|
|
||||||
#include <mapnik/geometry.hpp>
|
|
||||||
|
|
||||||
namespace mapnik { namespace geometry {
|
|
||||||
|
|
||||||
namespace detail {
|
|
||||||
|
|
||||||
struct geometry_empty
|
|
||||||
{
|
|
||||||
bool operator() (mapnik::geometry::geometry const& geom) const
|
|
||||||
{
|
|
||||||
return mapnik::util::apply_visitor(*this, geom);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator() (mapnik::geometry::point const&) const
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator() (mapnik::geometry::line_string const& geom) const
|
|
||||||
{
|
|
||||||
return geom.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator() (mapnik::geometry::polygon const& geom) const
|
|
||||||
{
|
|
||||||
return geom.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator() (mapnik::geometry::multi_point const& geom) const
|
|
||||||
{
|
|
||||||
return geom.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator() (mapnik::geometry::multi_line_string const& geom) const
|
|
||||||
{
|
|
||||||
return geom.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator() (mapnik::geometry::multi_polygon const& geom) const
|
|
||||||
{
|
|
||||||
return geom.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator() (mapnik::geometry::geometry_collection const& geom) const
|
|
||||||
{
|
|
||||||
return geom.empty();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
inline bool is_empty(mapnik::geometry::geometry const& geom)
|
|
||||||
{
|
|
||||||
return detail::geometry_empty()(geom);
|
|
||||||
}
|
|
||||||
|
|
||||||
}}
|
|
||||||
|
|
||||||
#endif // MAPNIK_GEOMETRY_EMPTY_HPP
|
|
|
@ -18,9 +18,9 @@ SECTION("envelope_test") {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Test empty geom
|
// Test empty geom
|
||||||
//geometry geom(mapnik::geometry::geometry_empty);
|
geometry geom(std::move(mapnik::geometry::geometry_empty()));
|
||||||
//mapnik::box2d<double> bbox = mapnik::geometry::envelope(geom);
|
mapnik::box2d<double> bbox = mapnik::geometry::envelope(geom);
|
||||||
//REQUIRE_FALSE( bbox.valid() );
|
REQUIRE_FALSE( bbox.valid() );
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
line_string line;
|
line_string line;
|
||||||
|
|
Loading…
Add table
Reference in a new issue