PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ test_lwgeom_delaunay_triangulation()

static void test_lwgeom_delaunay_triangulation ( void  )
static

Definition at line 19 of file cu_triangulate.c.

References cu_error_msg_reset(), LW_PARSER_CHECK_NONE, lwfree(), lwgeom_delaunay_triangulation(), lwgeom_free(), lwgeom_from_wkt(), lwgeom_normalize(), and lwgeom_to_ewkt().

Referenced by triangulate_suite_setup().

20 {
21 #if POSTGIS_GEOS_VERSION >= 34
22  LWGEOM *in, *tmp, *out;
23  char *wkt, *exp_wkt;
24 
25  /* Because i don't trust that much prior tests... ;) */
27 
28  in = lwgeom_from_wkt("MULTIPOINT(10 0, 20 0, 5 5)", LW_PARSER_CHECK_NONE);
29 
30  tmp = lwgeom_delaunay_triangulation(in, 0, 0);
31  lwgeom_free(in);
32  out = lwgeom_normalize(tmp);
33  lwgeom_free(tmp);
34 
35  wkt = lwgeom_to_ewkt(out);
36  lwgeom_free(out);
37 
38  exp_wkt = "GEOMETRYCOLLECTION(POLYGON((5 5,20 0,10 0,5 5)))";
39  if ( strcmp(wkt, exp_wkt) )
40  {
41  fprintf(stderr, "\nExp: %s\nObt: %s\n", exp_wkt, wkt);
42  }
43  CU_ASSERT_STRING_EQUAL(wkt, exp_wkt);
44  lwfree(wkt);
45 
46 #endif /* POSTGIS_GEOS_VERSION >= 34 */
47 }
void lwfree(void *mem)
Definition: lwutil.c:244
char * lwgeom_to_ewkt(const LWGEOM *lwgeom)
Return an alloced string.
Definition: lwgeom.c:518
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition: lwin_wkt.c:904
#define LW_PARSER_CHECK_NONE
Definition: liblwgeom.h:2013
void cu_error_msg_reset()
LWGEOM * lwgeom_delaunay_triangulation(const LWGEOM *geom, double tolerance, int edgeOnly)
Take vertices of a geometry and build a delaunay triangulation on them.
LWGEOM * lwgeom_normalize(const LWGEOM *geom)
Here is the call graph for this function:
Here is the caller graph for this function: