PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ assvg_point()

static char * assvg_point ( const LWPOINT point,
int  relative,
int  precision 
)
static

Definition at line 148 of file lwout_svg.c.

References assvg_point_buf(), assvg_point_size(), and lwalloc().

Referenced by lwgeom_to_svg().

149 {
150  char *output;
151  int size;
152 
153  size = assvg_point_size(point, circle, precision);
154  output = lwalloc(size);
155  assvg_point_buf(point, output, circle, precision);
156 
157  return output;
158 }
uint8_t precision
Definition: cu_in_twkb.c:25
static size_t assvg_point_buf(const LWPOINT *point, char *output, int circle, int precision)
Definition: lwout_svg.c:119
void * lwalloc(size_t size)
Definition: lwutil.c:229
static size_t assvg_point_size(const LWPOINT *point, int circle, int precision)
Point Geometry.
Definition: lwout_svg.c:107
Here is the call graph for this function:
Here is the caller graph for this function: