Public Member Functions | |
| bool | __eq__ (self, Box1i a) |
| int | __getitem__ (self, int e) |
| int | __getitem__ (self, int e) |
| None | __init__ (self) |
| None | __init__ (self, int min, int max) |
| None | __init__ (self, Box1i arg0) |
| bool | __ne__ (self, Box1i a) |
| str | __repr__ (self) |
| None | __setitem__ (self, int arg0, int arg1) |
| int | center (self) |
| bool | contains (self, int pt) |
| bool | contains (self, Box1i otherbox) |
| int | corner (self, bool c) |
| int | diagonal (self) |
| Box1i | expanded (self, int expansion) |
| int | getBoxClosestPointTo (self, int pt) |
| int | getDistanceSq (self, Box1i b) |
| int | getDistanceSq (self, int pt) |
| int | getProjection (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 | |
| None | __init__ (*args, **kwargs) |
| None | __init__ (*args, **kwargs) |
| Box1i | fromMinAndSize (int min, int size) |
| bool | getMaxBoxCorner (int n) |
| bool | getMinBoxCorner (int n) |
| Box1i | operator (*args, **kwargs) |
| Box1i | operator (*args, **kwargs) |
Static Public Attributes | |
| typing | elements = 1 |
Static Protected Attributes | |
| typing | _offsetof_max = 4 |
| typing | _offsetof_min = 0 |
Generated from: MR::Box1i Aliases: MinMaxi Box given by its min- and max- corners
|
static |
|
static |
| None mrmeshpy.Box1i.__init__ | ( | self | ) |
create invalid box by default
| None mrmeshpy.Box1i.__init__ | ( | self, | |
| int | min, | ||
| int | max ) |
| None mrmeshpy.Box1i.__init__ | ( | self, | |
| Box1i | arg0 ) |
Implicit copy constructor.
| bool mrmeshpy.Box1i.__eq__ | ( | self, | |
| Box1i | a ) |
| int mrmeshpy.Box1i.__getitem__ | ( | self, | |
| int | e ) |
min/max access by 0/1 index
| int mrmeshpy.Box1i.__getitem__ | ( | self, | |
| int | e ) |
| bool mrmeshpy.Box1i.__ne__ | ( | self, | |
| Box1i | a ) |
| str mrmeshpy.Box1i.__repr__ | ( | self | ) |
| None mrmeshpy.Box1i.__setitem__ | ( | self, | |
| int | arg0, | ||
| int | arg1 ) |
| int mrmeshpy.Box1i.center | ( | self | ) |
computes center of the box
| bool mrmeshpy.Box1i.contains | ( | self, | |
| Box1i | otherbox ) |
checks whether given box is fully inside (the surfaces may touch) of this box
| bool mrmeshpy.Box1i.contains | ( | self, | |
| int | pt ) |
checks whether given point is inside (including the surface) of this box
| int mrmeshpy.Box1i.corner | ( | self, | |
| bool | c ) |
returns the corner of this box as specified by given bool-vector: 0 element in (c) means take min's coordinate, 1 element in (c) means take max's coordinate
| int mrmeshpy.Box1i.diagonal | ( | self | ) |
computes length from min to max
| Box1i mrmeshpy.Box1i.expanded | ( | self, | |
| int | expansion ) |
decreases min and increased max on given value
|
static |
| int mrmeshpy.Box1i.getBoxClosestPointTo | ( | self, | |
| int | pt ) |
returns closest point in the box to given point
| int mrmeshpy.Box1i.getDistanceSq | ( | self, | |
| Box1i | b ) |
returns squared distance between this box and given one; returns zero if the boxes touch or intersect
| int 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
|
static |
considering all planes with given normal and arbitrary shift: dot(n,x) = d finds the box's corner for which d is maximal
|
static |
considering all planes with given normal and arbitrary shift: dot(n,x) = d finds the box's corner for which d is minimal
| int mrmeshpy.Box1i.getProjection | ( | self, | |
| int | pt ) |
returns the closest point on the box to the given point for points outside the box this is equivalent to getBoxClosestPointTo
| None mrmeshpy.Box1i.include | ( | self, | |
| Box1i | b ) |
minimally increases the box to include another box
| None mrmeshpy.Box1i.include | ( | self, | |
| int | pt ) |
minimally increases the box to include given point
| Box1i mrmeshpy.Box1i.insignificantlyExpanded | ( | self | ) |
decreases min and increases max to their closest representable value
computes intersection between this and other box
| bool mrmeshpy.Box1i.intersects | ( | self, | |
| Box1i | b ) |
checks whether this box intersects or touches given box
|
static |
|
static |
| int mrmeshpy.Box1i.size | ( | self | ) |
computes size of the box in all dimensions
| bool mrmeshpy.Box1i.valid | ( | self | ) |
true if the box contains at least one point
| int mrmeshpy.Box1i.volume | ( | self | ) |
computes the volume of this box
|
staticprotected |
|
staticprotected |
|
static |