PostGIS 3.7.0dev-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 168 of file lwgeom_box3d.c.

169{
170 if (!box)
171 return;
172
173 out->low.x = box->xmin;
174 out->low.y = box->ymin;
175
176 out->high.x = box->xmax;
177 out->high.y = box->ymax;
178}
double xmax
Definition liblwgeom.h:340
double ymax
Definition liblwgeom.h:340
double ymin
Definition liblwgeom.h:339
double xmin
Definition liblwgeom.h:339

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

Referenced by BOX3D_to_BOX().

Here is the caller graph for this function: