@@ -1430,7 +1430,7 @@ extern char GEOS_DLL GEOSRelatePattern_r(
1430
1430
GEOSContextHandle_t handle,
1431
1431
const GEOSGeometry* g1,
1432
1432
const GEOSGeometry* g2,
1433
- const char *pat );
1433
+ const char *imPattern );
1434
1434
1435
1435
/** \see GEOSRelate */
1436
1436
extern char GEOS_DLL *GEOSRelate_r(
@@ -1441,8 +1441,8 @@ extern char GEOS_DLL *GEOSRelate_r(
1441
1441
/** \see GEOSRelatePatternMatch */
1442
1442
extern char GEOS_DLL GEOSRelatePatternMatch_r(
1443
1443
GEOSContextHandle_t handle,
1444
- const char *mat ,
1445
- const char *pat );
1444
+ const char *intMatrix ,
1445
+ const char *imPattern );
1446
1446
1447
1447
/** \see GEOSRelateBoundaryNodeRule */
1448
1448
extern char GEOS_DLL *GEOSRelateBoundaryNodeRule_r(
@@ -4935,14 +4935,14 @@ extern char GEOS_DLL GEOSEqualsIdentical(
4935
4935
* \see geos::geom::Geometry::relate
4936
4936
* \param g1 First geometry in pair
4937
4937
* \param g2 Second geometry in pair
4938
- * \param pat DE9IM pattern to check
4938
+ * \param imPattern DE9IM pattern to check
4939
4939
* \return 1 on true, 0 on false, 2 on exception
4940
4940
* \since 2.2
4941
4941
*/
4942
4942
extern char GEOS_DLL GEOSRelatePattern(
4943
4943
const GEOSGeometry* g1,
4944
4944
const GEOSGeometry* g2,
4945
- const char *pat );
4945
+ const char *imPattern );
4946
4946
4947
4947
/**
4948
4948
* Calculate and return the DE9IM pattern for this geometry pair.
@@ -4960,15 +4960,15 @@ extern char GEOS_DLL *GEOSRelate(
4960
4960
/**
4961
4961
* Compare two DE9IM patterns and return true if they
4962
4962
* are consistent.
4963
- * \param mat Complete DE9IM string (does not have "*")
4964
- * \param pat Pattern to match to (may contain "*")
4963
+ * \param intMatrix Complete DE9IM string (does not have "*")
4964
+ * \param imPattern Pattern to match to (may contain "*")
4965
4965
* \return 1 on true, 0 on false, 2 on exception
4966
4966
*
4967
4967
* \since 3.3
4968
4968
*/
4969
4969
extern char GEOS_DLL GEOSRelatePatternMatch(
4970
- const char *mat ,
4971
- const char *pat );
4970
+ const char *intMatrix ,
4971
+ const char *imPattern );
4972
4972
4973
4973
/**
4974
4974
* Calculate and return the DE9IM pattern for this geometry pair.
@@ -5226,7 +5226,7 @@ extern char GEOS_DLL * GEOSPreparedRelate(
5226
5226
* prepared and provided geometry.
5227
5227
* \param pg1 The prepared geometry
5228
5228
* \param g2 The geometry to test
5229
- * \param pat The DE9IM pattern to test
5229
+ * \param imPattern The DE9IM pattern to test
5230
5230
* \returns 1 on true, 0 on false, 2 on exception
5231
5231
* \see GEOSPrepare
5232
5232
* \see GEOSRelatePattern
@@ -5237,7 +5237,7 @@ extern char GEOS_DLL * GEOSPreparedRelate(
5237
5237
extern char GEOS_DLL GEOSPreparedRelatePattern(
5238
5238
const GEOSPreparedGeometry* pg1,
5239
5239
const GEOSGeometry* g2,
5240
- const char* pat );
5240
+ const char* imPattern );
5241
5241
5242
5242
/**
5243
5243
* Use a \ref GEOSPreparedGeometry do a high performance
0 commit comments