Changes between Version 13 and Version 14 of FDORfc49
- Timestamp:
- 06/09/10 12:38:55 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc49
v13 v14 108 108 double x, 109 109 double y, 110 double toleranceXY = 1e-10,111 bool* isOnBoundary = NULL);110 bool* isOnBoundary = NULL, 111 double toleranceXY = 1e-10); 112 112 113 113 /// \brief … … 130 130 FDO_SPATIAL_API static bool PointInPolygon(FdoIPolygon* poly, 131 131 double x, 132 double y, 133 double toleranceXY = 1e-10,134 bool* isOn IntBoundary = NULL135 bool* isOnExtBoundary = NULL);132 double y, 133 bool* isOnIntBoundary = NULL, 134 bool* isOnExtBoundary = NULL, 135 double toleranceXY = 1e-10); 136 136 }}} 137 137 … … 208 208 /// Returns TRUE if the point is within ring or on its boundary, FALSE otherwise. 209 209 /// 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); 211 211 static System::Boolean PointInRing( NAMESPACE_OSGEO_GEOMETRY::ILinearRing^ ring, System::Double coordinateX, System::Double coordinateY, double toleranceXY); 212 212 … … 229 229 /// 230 230 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); 233 233 } 234 234 }}}