mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-11 13:34:10 +00:00
Integrated transform into support_status.
[SVN r80192]
This commit is contained in:
parent
726a608b0a
commit
8dff32b0e7
13
doc/generated/transform_status.qbk
Normal file
13
doc/generated/transform_status.qbk
Normal file
@ -0,0 +1,13 @@
|
||||
[heading Supported geometries]
|
||||
[table
|
||||
[[ ][Point][Segment][Box][Linestring][Ring][Polygon][MultiPoint][MultiLinestring][MultiPolygon]]
|
||||
[[Point][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[Segment][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[Box][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[Linestring][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[Ring][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[Polygon][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[MultiPoint][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[MultiLinestring][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
[[MultiPolygon][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ][ [$img/ok.png] ]]
|
||||
]
|
@ -34,6 +34,7 @@
|
||||
#include <boost/geometry/algorithms/expand.hpp>
|
||||
#include <boost/geometry/algorithms/overlaps.hpp>
|
||||
#include <boost/geometry/algorithms/simplify.hpp>
|
||||
#include <boost/geometry/algorithms/transform.hpp>
|
||||
#include <boost/geometry/multi/algorithms/append.hpp>
|
||||
#include <boost/geometry/multi/algorithms/area.hpp>
|
||||
#include <boost/geometry/multi/algorithms/clear.hpp>
|
||||
@ -44,6 +45,7 @@
|
||||
#include <boost/geometry/multi/algorithms/envelope.hpp>
|
||||
#include <boost/geometry/multi/algorithms/equals.hpp>
|
||||
#include <boost/geometry/multi/algorithms/simplify.hpp>
|
||||
#include <boost/geometry/multi/algorithms/transform.hpp>
|
||||
#include <boost/geometry/strategies/strategies.hpp>
|
||||
|
||||
#include "text_outputter.hpp"
|
||||
@ -98,6 +100,7 @@ DECLARE_BINARY_ALGORITHM(equals)
|
||||
DECLARE_BINARY_ALGORITHM(expand)
|
||||
DECLARE_BINARY_ALGORITHM(overlaps)
|
||||
DECLARE_UNARY_ALGORITHM(simplify)
|
||||
DECLARE_BINARY_ALGORITHM(transform)
|
||||
DECLARE_BINARY_ALGORITHM(within)
|
||||
|
||||
|
||||
@ -221,6 +224,7 @@ void support_status()
|
||||
test_binary_algorithm<expand, all_types, all_types, OutputFactory>("expand");
|
||||
test_binary_algorithm<overlaps, all_types, all_types, OutputFactory>("overlaps");
|
||||
test_unary_algorithm<simplify, all_types, OutputFactory>("simplify");
|
||||
test_binary_algorithm<transform, all_types, all_types, OutputFactory>("transform");
|
||||
test_binary_algorithm<within, all_types, all_types, OutputFactory>("within");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user