PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ BOX3D_to_BOX()

Datum BOX3D_to_BOX ( PG_FUNCTION_ARGS  )

Definition at line 173 of file lwgeom_box3d.c.

174 {
175  BOX3D *in = (BOX3D *)PG_GETARG_POINTER(0);
176  BOX *box = palloc(sizeof(BOX));
177 
178  box3d_to_box_p(in, box);
179  PG_RETURN_POINTER(box);
180 }
static void box3d_to_box_p(BOX3D *box, BOX *out)
Definition: lwgeom_box3d.c:160

References box3d_to_box_p().

Here is the call graph for this function: