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