PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ _lwt_minTolerance()

static double _lwt_minTolerance ( LWGEOM g)
static

Definition at line 4905 of file lwgeom_topo.c.

4906 {
4907  const GBOX* gbox;
4908  double max;
4909  double ret;
4910 
4911  gbox = lwgeom_get_bbox(g);
4912  if ( ! gbox ) return 0; /* empty */
4913  max = FP_ABS(gbox->xmin);
4914  if ( max < FP_ABS(gbox->xmax) ) max = FP_ABS(gbox->xmax);
4915  if ( max < FP_ABS(gbox->ymin) ) max = FP_ABS(gbox->ymin);
4916  if ( max < FP_ABS(gbox->ymax) ) max = FP_ABS(gbox->ymax);
4917 
4918  ret = _lwt_minToleranceDouble(max);
4919 
4920  return ret;
4921 }
const GBOX * lwgeom_get_bbox(const LWGEOM *lwgeom)
Get a non-empty geometry bounding box, computing and caching it if not already there.
Definition: lwgeom.c:743
#define FP_ABS(a)
static double _lwt_minToleranceDouble(double d)
Definition: lwgeom_topo.c:4884
double ymax
Definition: liblwgeom.h:357
double xmax
Definition: liblwgeom.h:355
double ymin
Definition: liblwgeom.h:356
double xmin
Definition: liblwgeom.h:354

References _lwt_minToleranceDouble(), FP_ABS, lwgeom_get_bbox(), GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by _lwt_AddLineEdge(), and _lwt_AddPoint().

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