28 #ifndef __TERRALIB_VP_INTERNAL_LINETOPOLYGON_MEMORY_H 
   29 #define __TERRALIB_VP_INTERNAL_LINETOPOLYGON_MEMORY_H 
   32 #include "../common/Exception.h" 
   33 #include "../geometry/Geometry.h" 
   34 #include "../geometry/GeometryCollection.h" 
   35 #include "../geometry/LineString.h" 
   36 #include "../geometry/MultiPolygon.h" 
   37 #include "../geometry/Polygon.h" 
Line to polygon operation.
 
It is a collection of other geometric objects.
 
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
 
LineString is a curve with linear interpolation between points.
 
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings.
 
void getPolygons(te::gm::Geometry *geom, std::vector< te::gm::Polygon * > &polygons)
 
void getPolygons(te::gm::GeometryCollection *gc, std::vector< te::gm::Polygon * > &polygons)
 
void getPolygons(te::gm::LineString *l, std::vector< te::gm::Polygon * > &polygons)
 
std::unique_ptr< te::gm::MultiPolygon > line2Polygon(te::gm::Geometry *geom)
 
void getPolygons(te::gm::Polygon *p, std::vector< te::gm::Polygon * > &polygons)
 
#define TEVPEXPORT
You can use this macro in order to export/import classes and functions from this module.
 
Proxy configuration file for TerraView (see terraview_config.h).
 
An exception class for the XML module.