PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ BOX3D_contained()

Datum BOX3D_contained ( PG_FUNCTION_ARGS  )

Definition at line 632 of file lwgeom_box3d.c.

633 {
634  BOX3D *box1 = PG_GETARG_BOX3D_P(0);
635  BOX3D *box2 = PG_GETARG_BOX3D_P(1);
636  bool result = BOX3D_contained_internal(box1, box2);
637  PG_RETURN_BOOL(result);
638 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:262
bool BOX3D_contained_internal(BOX3D *box1, BOX3D *box2)
Definition: lwgeom_box3d.c:625

References BOX3D_contained_internal(), and result.

Here is the call graph for this function: