PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ BOX3D_xmax()

Datum BOX3D_xmax ( PG_FUNCTION_ARGS  )

Definition at line 430 of file lwgeom_box3d.c.

431{
432 BOX3D *box = (BOX3D *)PG_GETARG_POINTER(0);
433 PG_RETURN_FLOAT8(Max(box->xmin, box->xmax));
434}
double xmax
Definition liblwgeom.h:326
double xmin
Definition liblwgeom.h:325

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