Home
last modified time | relevance | path

Searched refs:GEOSEqualsExact (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/geos/geos-3.9.1/tests/unit/capi/
H A DGEOSMinimumBoundingCircleTest.cpp105 bool eq = GEOSEqualsExact(geom2_, geom3_, 0.0001) != 0; in test()
124 bool eq = GEOSEqualsExact(geom2_, geom3_, 0.0001) != 0; in test()
148 eq = GEOSEqualsExact(geom2_, geom3_, 0.0001) != 0; in test()
151 eq = GEOSEqualsExact(center, center_expected, 0.0001) != 0; in test()
H A Dcapi_test_utils.h45 bool rslt = GEOSEqualsExact(g1, g2, tolerance); in ensure_geometry_equals()
71 bool rslt = GEOSEqualsExact(g1, g2, 1e-12); in ensure_geometry_equals()
H A DGEOSMakeValidTest.cpp85 ensure(GEOSEqualsExact(geom2_, expect_, 0.01)); in test()
100 ensure(GEOSEqualsExact(geom2_, expect_, 0.01)); in test()
H A DGEOSIntersectionPrecTest.cpp66 return GEOSEqualsExact(g1, g2, tolerance); in same()
163 ensure(GEOSEqualsExact(expected_, geom3_, 0.00001)); in test()
H A DGEOSGeom_createLineStringTest.cpp30 ensure_equals(GEOSEqualsExact(result, expected, 0), 1); in test()
H A DGEOSUnionPrecTest.cpp37 ensure_equals(GEOSEqualsExact(result, expected, 0), 1); in test()
H A DGEOSUnionTest.cpp37 ensure_equals(GEOSEqualsExact(result, expected, 0), 1); in test()
H A DGEOSGeom_createPolygonTest.cpp43 ensure_equals(GEOSEqualsExact(polygon, expected, 0), 1); in test()
H A DGEOSReverseTest.cpp56 ensure_equals(1, GEOSEqualsExact(result, expected_result, 0.0)); in testReverse()
H A DGEOSIntersectionTest.cpp127 ensure(GEOSEqualsExact(expected_, geom3_, 0.00001)); in test()
H A DGEOSVoronoiDiagramTest.cpp52 bool eq = GEOSEqualsExact(g, exp_g, 1e-10) != 0; in ensure_equals_wkt()
/dports/devel/py-shapely/Shapely-1.8.0/shapely/
H A Dctypes_declarations.py279 lgeos.GEOSEqualsExact.restype = c_byte
280 lgeos.GEOSEqualsExact.argtypes = [c_void_p, c_void_p, c_double]
H A Dgeos.py640 self.GEOSEqualsExact,
685 self.methods['equals_exact'] = self.GEOSEqualsExact
/dports/graphics/geos/geos-3.9.1/capi/
H A Dgeos_c.cpp259 GEOSEqualsExact(const Geometry* g1, const Geometry* g2, double tolerance) in GEOSEqualsExact() function
H A Dgeos_c.h.in1856 * considered equivalent by GEOSEqualsExact.
1859 extern char GEOS_DLL GEOSEqualsExact(const GEOSGeometry* g1, const GEOSGeometry* g2, double toleran…
/dports/graphics/geos/geos-3.9.1/
H A DChangeLog10264 * capi/geos_c.h.in: Add comment explaining GEOSEqualsExact Closes