|
|
|
|
|
|
|
|
|
|
|
|
|
|
contains(self,
x,
y)
Returns true if the given point is contained within the
bounding box, where all boundaries of the box are
considered to be inclusive. |
source code
|
|
|
|
contains_exclusive(self,
x,
y)
Return True if the given point is contained within the
bounding box, where the bottom and right boundaries are
considered exclusive. |
source code
|
|
|
|
containsbb_exclusive(self,
x)
Returns true if the given BoundingBox x is contained within the
bounding box, where at least one of the boundaries of the box has
to be exclusive. |
source code
|
|
|
|
containsbb_inclusive(self,
x)
Returns true if the given BoundingBox x is contained within the
bounding box, including cases of exact match. |
source code
|
|
|
|
upperexclusive_contains(self,
x,
y)
Returns true if the given point is contained within the
bounding box, where the right and upper boundaries
are exclusive, and the left and lower boundaries are
inclusive. |
source code
|
|
|
|
|
|
|
lbrt(self)
return left,bottom,right,top values for the BoundingBox. |
source code
|
|
|
Inherited from BoundingRegion:
__getstate__,
__setstate__,
centroid,
rotate,
scale,
set,
translate
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__setattr__,
__sizeof__,
__subclasshook__
|