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

◆ BOX3D_ymax()

Datum BOX3D_ymax ( PG_FUNCTION_ARGS  )

Definition at line 445 of file lwgeom_box3d.c.

446{
447 BOX3D *box = (BOX3D *)PG_GETARG_POINTER(0);
448 PG_RETURN_FLOAT8(Max(box->ymin, box->ymax));
449}
double ymax
Definition liblwgeom.h:340
double ymin
Definition liblwgeom.h:339

References BOX3D::ymax, and BOX3D::ymin.