26 #ifndef __TERRALIB_GEOMETRY_INTERNAL_POINTM_H 
   27 #define __TERRALIB_GEOMETRY_INTERNAL_POINTM_H 
   73         PointM(
const double& x, 
const double& y, 
const double & m, 
int srid = 0, 
Envelope* mbr = 0);
 
   83         PointM(
int srid = 0, 
Envelope* mbr = 0);
 
   90         PointM(
const PointM& rhs);
 
  102         PointM& operator=(
const PointM& rhs);
 
  146         Geometry* locateBetween(
const double& mStart, 
const double& mEnd) 
const throw(Exception);
 
  160         const double& 
getM()
 const { 
return m_m; }
 
  167         void setM(
const double& m) { m_m = m; }
 
  179 #endif  // __TERRALIB_GEOMETRY_INTERNAL_POINTM_H 
A point with x and y coordinate values. 
 
A point with an associated measure. 
 
#define TEGEOMEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
void setM(const double &m)
It sets the Point z-coordinate value. 
 
A point with x and y coordinate values. 
 
An Envelope defines a 2D rectangular region. 
 
double m_m
The Point m-coordinate value. 
 
const double & getM() const 
It returns the Point z-coordinate value. 
 
A base class for values that can be retrieved from the data access module. 
 
#define TE_DEFINE_VISITABLE
 
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.