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

◆ BOX3D_ymin()

Datum BOX3D_ymin ( PG_FUNCTION_ARGS  )

Definition at line 416 of file lwgeom_box3d.c.

417{
418 BOX3D *box = (BOX3D *)PG_GETARG_POINTER(0);
419 PG_RETURN_FLOAT8(Min(box->ymin, box->ymax));
420}
double ymax
Definition liblwgeom.h:326
double ymin
Definition liblwgeom.h:325

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