PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ _lwt_minTolerance()

static double _lwt_minTolerance ( LWGEOM g)
static

Definition at line 5044 of file lwgeom_topo.c.

5045 {
5046  const GBOX* gbox;
5047  double max;
5048  double ret;
5049 
5050  gbox = lwgeom_get_bbox(g);
5051  if ( ! gbox ) return 0; /* empty */
5052  max = FP_ABS(gbox->xmin);
5053  if ( max < FP_ABS(gbox->xmax) ) max = FP_ABS(gbox->xmax);
5054  if ( max < FP_ABS(gbox->ymin) ) max = FP_ABS(gbox->ymin);
5055  if ( max < FP_ABS(gbox->ymax) ) max = FP_ABS(gbox->ymax);
5056 
5057  ret = _lwt_minToleranceDouble(max);
5058 
5059  return ret;
5060 }
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:5023
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().

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