PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ BOX3D_to_BOX()

Datum BOX3D_to_BOX ( PG_FUNCTION_ARGS  )

Definition at line 183 of file lwgeom_box3d.c.

References box3d_to_box_p(), BOX3D_to_LWGEOM(), and PG_FUNCTION_INFO_V1().

Referenced by box3d_to_box_p().

184 {
185  BOX3D *in = (BOX3D *)PG_GETARG_POINTER(0);
186  BOX *box = palloc(sizeof(BOX));
187 
188  box3d_to_box_p(in, box);
189  PG_RETURN_POINTER(box);
190 }
static void box3d_to_box_p(BOX3D *box, BOX *out)
Definition: lwgeom_box3d.c:171
Here is the call graph for this function:
Here is the caller graph for this function: