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

◆ BOX3D_contains()

Datum BOX3D_contains ( PG_FUNCTION_ARGS  )

Needed for SP-GiST support.

Definition at line 650 of file lwgeom_box3d.c.

651{
652 BOX3D *box1 = PG_GETARG_BOX3D_P(0);
653 BOX3D *box2 = PG_GETARG_BOX3D_P(1);
654 bool result = BOX3D_contains_internal(box1, box2);
655 PG_RETURN_BOOL(result);
656}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
bool BOX3D_contains_internal(BOX3D *box1, BOX3D *box2)
Needed for SP-GiST support.

References BOX3D_contains_internal(), and result.

Here is the call graph for this function: