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

◆ BOX3D_ymin()

Datum BOX3D_ymin ( PG_FUNCTION_ARGS  )

Definition at line 424 of file lwgeom_box3d.c.

425{
426 BOX3D *box = (BOX3D *)PG_GETARG_POINTER(0);
427 PG_RETURN_FLOAT8(Min(box->ymin, box->ymax));
428}
double ymax
Definition liblwgeom.h:340
double ymin
Definition liblwgeom.h:339

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