Public Member Functions | |
bool | __eq__ (self, Box1ll a) |
None | __init__ (self) |
None | __init__ (self, int min, int max) |
None | __init__ (self, Box1ll arg0) |
bool | __ne__ (self, Box1ll a) |
int | center (self) |
bool | contains (self, int pt) |
int | diagonal (self) |
Box1ll | expanded (self, int expansion) |
int | getBoxClosestPointTo (self, int pt) |
int | getDistanceSq (self, Box1ll b) |
int | getDistanceSq (self, int pt) |
None | include (self, int pt) |
None | include (self, Box1ll b) |
Box1ll | insignificantlyExpanded (self) |
Box1ll | intersect (self, Box1ll b) |
Box1ll | intersection (self, Box1ll b) |
bool | intersects (self, Box1ll b) |
int | size (self) |
bool | valid (self) |
int | volume (self) |
Static Public Member Functions | |
Box1ll | fromMinAndSize (int min, int size) |
Static Public Attributes | |
typing | elements = 1 |
Protected Member Functions | |
int | _Subscript (self, int e) |
int | _Subscript (self, int e) |
Generated from: MR::Box1ll Aliases: Box_long_long Box given by its min- and max- corners
None meshlib.mrmeshpy.Box1ll.__init__ | ( | self | ) |
create invalid box by default
None meshlib.mrmeshpy.Box1ll.__init__ | ( | self, | |
int | min, | ||
int | max ) |
None meshlib.mrmeshpy.Box1ll.__init__ | ( | self, | |
Box1ll | arg0 ) |
Implicit copy constructor.
bool meshlib.mrmeshpy.Box1ll.__eq__ | ( | self, | |
Box1ll | a ) |
bool meshlib.mrmeshpy.Box1ll.__ne__ | ( | self, | |
Box1ll | a ) |
|
protected |
min/max access by 0/1 index
|
protected |
int meshlib.mrmeshpy.Box1ll.center | ( | self | ) |
computes center of the box
bool meshlib.mrmeshpy.Box1ll.contains | ( | self, | |
int | pt ) |
checks whether given point is inside (including the surface) of the box
int meshlib.mrmeshpy.Box1ll.diagonal | ( | self | ) |
computes length from min to max
Box1ll meshlib.mrmeshpy.Box1ll.expanded | ( | self, | |
int | expansion ) |
decreases min and increased max on given value
|
static |
int meshlib.mrmeshpy.Box1ll.getBoxClosestPointTo | ( | self, | |
int | pt ) |
returns closest point in the box to given point
int meshlib.mrmeshpy.Box1ll.getDistanceSq | ( | self, | |
Box1ll | b ) |
returns squared distance between this box and given one; returns zero if the boxes touch or intersect
int meshlib.mrmeshpy.Box1ll.getDistanceSq | ( | self, | |
int | pt ) |
returns squared distance between this box and given point; returns zero if the point is inside or on the boundary of the box
None meshlib.mrmeshpy.Box1ll.include | ( | self, | |
Box1ll | b ) |
minimally increases the box to include another box
None meshlib.mrmeshpy.Box1ll.include | ( | self, | |
int | pt ) |
minimally increases the box to include given point
Box1ll meshlib.mrmeshpy.Box1ll.insignificantlyExpanded | ( | self | ) |
decreases min and increases max to their closest representable value
computes intersection between this and other box
bool meshlib.mrmeshpy.Box1ll.intersects | ( | self, | |
Box1ll | b ) |
checks whether this box intersects or touches given box
int meshlib.mrmeshpy.Box1ll.size | ( | self | ) |
computes size of the box in all dimensions
bool meshlib.mrmeshpy.Box1ll.valid | ( | self | ) |
true if the box contains at least one point
int meshlib.mrmeshpy.Box1ll.volume | ( | self | ) |
computes the volume of this box
|
static |