PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ out_svg_test_dims()

static void out_svg_test_dims ( void  )
static

Definition at line 120 of file cu_out_svg.c.

121 {
122  /* 4D - with Circle point */
123  do_svg_test(
124  "POINT(0 1 2 3)",
125  "cx=\"0\" cy=\"-1\"",
126  0, 0);
127 
128  /* 4D - with Point */
129  do_svg_test(
130  "POINT(0 1 2 3)",
131  "x=\"0\" y=\"-1\"",
132  0, 1);
133 
134  /* 4D - with PointArray */
135  do_svg_test(
136  "LINESTRING(0 1 2 3,4 5 6 7)",
137  "M 0 -1 L 4 -5",
138  0, 0);
139 
140  /* 4D - with relative PointArray */
141  do_svg_test(
142  "LINESTRING(0 1 2 3,4 5 6 7)",
143  "M 0 -1 l 4 -4",
144  0, 1);
145 }
static void do_svg_test(char *in, char *out, int precision, int relative)
Definition: cu_out_svg.c:20

References do_svg_test().

Referenced by out_svg_suite_setup().

Here is the call graph for this function:
Here is the caller graph for this function: