PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ BOX3D_same_internal()

bool BOX3D_same_internal ( BOX3D box1,
BOX3D box2 
)

Definition at line 661 of file lwgeom_box3d.c.

662 {
663  return (FPeq(box1->xmax, box2->xmax) && FPeq(box1->xmin, box2->xmin)) &&
664  (FPeq(box1->ymax, box2->ymax) && FPeq(box1->ymin, box2->ymin)) &&
665  (FPeq(box1->zmax, box2->zmax) && FPeq(box1->zmin, box2->zmin));
666 }
double xmax
Definition: liblwgeom.h:340
double zmin
Definition: liblwgeom.h:339
double ymax
Definition: liblwgeom.h:340
double ymin
Definition: liblwgeom.h:339
double zmax
Definition: liblwgeom.h:340
double xmin
Definition: liblwgeom.h:339

References BOX3D::xmax, BOX3D::xmin, BOX3D::ymax, BOX3D::ymin, BOX3D::zmax, and BOX3D::zmin.

Referenced by BOX3D_same(), gserialized_same_3d(), and gserialized_spgist_leaf_consistent_3d().

Here is the caller graph for this function: