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

◆ BOX3D_ymax()

Datum BOX3D_ymax ( PG_FUNCTION_ARGS  )

Definition at line 437 of file lwgeom_box3d.c.

438{
439 BOX3D *box = (BOX3D *)PG_GETARG_POINTER(0);
440 PG_RETURN_FLOAT8(Max(box->ymin, box->ymax));
441}
double ymax
Definition liblwgeom.h:326
double ymin
Definition liblwgeom.h:325

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