PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ BOX3D_xmin()

Datum BOX3D_xmin ( PG_FUNCTION_ARGS  )

Definition at line 417 of file lwgeom_box3d.c.

418 {
419  BOX3D *box = (BOX3D *)PG_GETARG_POINTER(0);
420  PG_RETURN_FLOAT8(Min(box->xmin, box->xmax));
421 }
double xmax
Definition: liblwgeom.h:340
double xmin
Definition: liblwgeom.h:339

References BOX3D::xmax, and BOX3D::xmin.