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

◆ box3d_to_box_p()

static void box3d_to_box_p ( BOX3D box,
BOX *  out 
)
static

Definition at line 160 of file lwgeom_box3d.c.

161{
162 if (!box)
163 return;
164
165 out->low.x = box->xmin;
166 out->low.y = box->ymin;
167
168 out->high.x = box->xmax;
169 out->high.y = box->ymax;
170}
double xmax
Definition liblwgeom.h:326
double ymax
Definition liblwgeom.h:326
double ymin
Definition liblwgeom.h:325
double xmin
Definition liblwgeom.h:325

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

Referenced by BOX3D_to_BOX().

Here is the caller graph for this function: