26 #ifndef __TERRALIB_GEOMETRY_INTERNAL_VISITOR_H 
   27 #define __TERRALIB_GEOMETRY_INTERNAL_VISITOR_H 
   33 #include "../geometry_fw.h" 
   66         virtual void visit(
const Curve& visited) = 0;
 
   67         virtual void visit(
const Geometry& visited) = 0;        
 
   69         virtual void visit(
const LinearRing& visited) = 0;
 
   70         virtual void visit(
const LineString& visited) = 0;
 
   71         virtual void visit(
const MultiCurve& visited) = 0;
 
   73         virtual void visit(
const MultiPoint& visited) = 0;
 
   77         virtual void visit(
const Point& visited) = 0;
 
   78         virtual void visit(
const PointM& visited) = 0;
 
   79         virtual void visit(
const PointZ& visited) = 0;
 
   80         virtual void visit(
const PointZM& visited) = 0;
 
   81         virtual void visit(
const PointKd& visited) = 0;
 
   82         virtual void visit(
const Polygon& visited) = 0;
 
   84         virtual void visit(
const Surface& visited) = 0;
 
   85         virtual void visit(
const TIN& visited) = 0;
 
   86         virtual void visit(
const Triangle& visited) = 0;
 
   98 #endif  // __TERRALIB_GEOMETRY_INTERNAL_VISITOR_H 
MultiLineString is a MultiCurve whose elements are LineStrings. 
 
#define TEGEOMEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
MultiSurface is a class that represents a 2-dimensional GeometryCollection whose elements are surface...
 
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings. 
 
A LinearRing is a LineString that is both closed and simple. 
 
A point with z-coordinate value. 
 
CurvePolygon is a planar surface defined by 1 exterior boundary and 0 or more interior boundaries...
 
TIN (triangulated irregular network) is a PolyhedralSurface consisting only of Triangle patches...
 
A base abstract class for 0-dimensional geometric objects that represents a single location in coordi...
 
A point with a z-coordinate value and an associated measurement. 
 
MultiCurve is a class that represents a 1-dimensional GeometryCollection whose elements are curves...
 
LineString is a curve with linear interpolation between points. 
 
CircularString is a curve with circular interpolation between points. 
 
Curve is an abstract class that represents 1-dimensional geometric objects stored as a sequence of co...
 
MultiPolygon is a MultiSurface whose elements are Polygons. 
 
virtual ~Visitor()
Virtual destructor. 
 
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards. 
 
A point with x and y coordinate values. 
 
CompoundCurve is a curve that may have circular and linear segments. 
 
A point with an associated measure. 
 
Configuration flags for the Vector Geometry Model of TerraLib. 
 
It is a collection of other geometric objects. 
 
PolyhedralSurface is a contiguous collection of polygons, which share common boundary segments...
 
MultiPoint is a GeometryCollection whose elements are restricted to points. 
 
Triangle is a polygon with 3 distinct, non-collinear vertices and no interior boundary. 
 
Visitor()
Default constructor. 
 
A visitor interface for the Geometry hierarchy. 
 
Surface is an abstract class that represents a 2-dimensional geometric objects.