Changes between Version 13 and Version 14 of FDORfc49


Ignore:
Timestamp:
06/09/10 12:38:55 (15 years ago)
Author:
romicadascalescu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc49

    v13 v14  
    108108                                                    double x,
    109109                                                    double y,
    110                                                     double toleranceXY = 1e-10,
    111                                                     bool* isOnBoundary = NULL);
     110                                                    bool* isOnBoundary = NULL,
     111                                                    double toleranceXY = 1e-10);
    112112
    113113            /// \brief
     
    130130            FDO_SPATIAL_API static bool PointInPolygon(FdoIPolygon* poly,
    131131                                                       double x,
    132                                                        double y,                                                       
    133                                                        double toleranceXY = 1e-10,
    134                                                        bool* isOnIntBoundary = NULL
    135                                                        bool* isOnExtBoundary = NULL);
     132                                                       double y,
     133                                                       bool* isOnIntBoundary = NULL,
     134                                                       bool* isOnExtBoundary = NULL,
     135                                                       double toleranceXY = 1e-10);
    136136}}}
    137137
     
    208208    /// Returns TRUE if the point is within ring or on its boundary, FALSE otherwise.
    209209    ///
    210     static System::Boolean PointInRing( NAMESPACE_OSGEO_GEOMETRY::ILinearRing^ ring, System::Double coordinateX, System::Double coordinateY, double toleranceXY, System::Boolean% isOnBoundary);
     210    static System::Boolean PointInRing( NAMESPACE_OSGEO_GEOMETRY::ILinearRing^ ring, System::Double coordinateX, System::Double coordinateY, System::Boolean% isOnBoundary, double toleranceXY);
    211211    static System::Boolean PointInRing( NAMESPACE_OSGEO_GEOMETRY::ILinearRing^ ring, System::Double coordinateX, System::Double coordinateY, double toleranceXY);
    212212
     
    229229    ///
    230230    static System::Boolean PointInPolygon(NAMESPACE_OSGEO_GEOMETRY::IPolygon^ polygon, System::Double coordinateX, System::Double coordinateY, double toleranceXY);
    231     static System::Boolean PointInPolygon(NAMESPACE_OSGEO_GEOMETRY::IPolygon^ polygon, System::Double coordinateX, System::Double coordinateY, double toleranceXY, System::Boolean% isOnExtBoundary);
    232     static System::Boolean PointInPolygon(NAMESPACE_OSGEO_GEOMETRY::IPolygon^ polygon, System::Double coordinateX, System::Double coordinateY, double toleranceXY, System::Boolean% isOnExtBoundary, System::Boolean% isOnInBoundary);
     231    static System::Boolean PointInPolygon(NAMESPACE_OSGEO_GEOMETRY::IPolygon^ polygon, System::Double coordinateX, System::Double coordinateY, System::Boolean% isOnExtBoundary, double toleranceXY);
     232    static System::Boolean PointInPolygon(NAMESPACE_OSGEO_GEOMETRY::IPolygon^ polygon, System::Double coordinateX, System::Double coordinateY, System::Boolean% isOnExtBoundary, System::Boolean% isOnInBoundary, double toleranceXY);
    233233}
    234234}}}