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

◆ BOX3D_to_BOX()

Datum BOX3D_to_BOX ( PG_FUNCTION_ARGS  )

Definition at line 181 of file lwgeom_box3d.c.

182{
183 BOX3D *in = (BOX3D *)PG_GETARG_POINTER(0);
184 BOX *box = palloc(sizeof(BOX));
185
186 box3d_to_box_p(in, box);
187 PG_RETURN_POINTER(box);
188}
static void box3d_to_box_p(BOX3D *box, BOX *out)

References box3d_to_box_p().

Here is the call graph for this function: