Box given by its min- and max- corners Generated from class MR.Box2d. This is the by-value version of the struct.
More...
Inheritance diagram for MR.Box2d:Public Member Functions | |
| Box2d (Box2d _other) | |
| Generated copy constructor. | |
| unsafe | Box2d () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | Box2d (in MR.Vector2d min, in MR.Vector2d max) |
Generated from constructor MR.Box2d.Box2d. | |
| unsafe | Box2d (MR.Const_NoInit _1) |
Generated from constructor MR.Box2d.Box2d. | |
| unsafe ref MR.Vector2d | index (int e) |
Generated from method MR.Box2d.operator[]. | |
| readonly unsafe bool | valid () |
true if the box contains at least one point Generated from method MR.Box2d.valid. | |
| readonly unsafe MR.Vector2d | center () |
computes center of the box Generated from method MR.Box2d.center. | |
| readonly unsafe MR.Vector2d | corner (in MR.Vector2b 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 Generated from method MR.Box2d.corner. | |
| readonly unsafe MR.Vector2d | size () |
computes size of the box in all dimensions Generated from method MR.Box2d.size. | |
| readonly unsafe double | diagonal () |
computes length from min to max Generated from method MR.Box2d.diagonal. | |
| readonly unsafe double | volume () |
computes the volume of this box Generated from method MR.Box2d.volume. | |
| unsafe void | include (in MR.Vector2d pt) |
minimally increases the box to include given point Generated from method MR.Box2d.include. | |
| unsafe void | include (in MR.Box2d b) |
minimally increases the box to include another box Generated from method MR.Box2d.include. | |
| readonly unsafe bool | contains (in MR.Vector2d pt) |
checks whether given point is inside (including the surface) of this box Generated from method MR.Box2d.contains. | |
| readonly unsafe bool | contains (in MR.Box2d otherbox) |
checks whether given box is fully inside (the surfaces may touch) of this box Generated from method MR.Box2d.contains. | |
| readonly unsafe MR.Vector2d | getBoxClosestPointTo (in MR.Vector2d pt) |
returns closest point in the box to given point Generated from method MR.Box2d.getBoxClosestPointTo. | |
| readonly unsafe bool | intersects (in MR.Box2d b) |
checks whether this box intersects or touches given box Generated from method MR.Box2d.intersects. | |
| readonly unsafe MR.Box2d | intersection (in MR.Box2d b) |
computes intersection between this and other box Generated from method MR.Box2d.intersection. | |
| unsafe ref MR.Box2d | intersect (in MR.Box2d b) |
Generated from method MR.Box2d.intersect. | |
| readonly unsafe double | getDistanceSq (in MR.Box2d b) |
returns squared distance between this box and given one; returns zero if the boxes touch or intersect Generated from method MR.Box2d.getDistanceSq. | |
| readonly unsafe double | getDistanceSq (in MR.Vector2d pt) |
returns squared distance between this box and given point; returns zero if the point is inside or on the boundary of the box Generated from method MR.Box2d.getDistanceSq. | |
| readonly unsafe MR.Vector2d | getProjection (in MR.Vector2d pt) |
returns the closest point on the box to the given point for points outside the box this is equivalent to getBoxClosestPointTo Generated from method MR.Box2d.getProjection. | |
| readonly unsafe MR.Box2d | expanded (in MR.Vector2d expansion) |
decreases min and increased max on given value Generated from method MR.Box2d.expanded. | |
| readonly unsafe MR.Box2d | insignificantlyExpanded () |
decreases min and increases max to their closest representable value Generated from method MR.Box2d.insignificantlyExpanded. | |
| bool | Equals (MR.Box2d a) |
| override bool | Equals (object? other) |
Static Public Member Functions | |
| static implicit | operator Box2d (ConstBox_Box2d other) |
| Copy contents from a wrapper class to this struct. | |
| static unsafe MR.Box2d | fromMinAndSize (in MR.Vector2d min, in MR.Vector2d size) |
Generated from method MR.Box2d.fromMinAndSize. | |
| static unsafe MR.Vector2b | getMinBoxCorner (in MR.Vector2d n) |
considering all planes with given normal and arbitrary shift: dot(n,x) = d finds the box's corner for which d is minimal Generated from method MR.Box2d.getMinBoxCorner. | |
| static unsafe MR.Vector2b | getMaxBoxCorner (in MR.Vector2d n) |
considering all planes with given normal and arbitrary shift: dot(n,x) = d finds the box's corner for which d is maximal Generated from method MR.Box2d.getMaxBoxCorner. | |
| static unsafe bool | operator== (MR.Box2d _this, MR.Box2d a) |
Generated from method MR.Box2d.operator==. | |
| static unsafe bool | operator!= (MR.Box2d _this, MR.Box2d a) |
Public Attributes | |
| MR.Vector2d | min |
| MR.Vector2d | max |
Properties | |
| readonly unsafe ref readonly MR.Vector2d | this[int e] [get] |
min/max access by 0/1 index Generated from method MR.Box2d.operator[]. | |
Box given by its min- and max- corners Generated from class MR.Box2d. This is the by-value version of the struct.
|
inline |
Generated copy constructor.
|
inline |
Constructs an empty (default-constructed) instance.
|
inline |
Generated from constructor MR.Box2d.Box2d.
|
inline |
Generated from constructor MR.Box2d.Box2d.
|
inline |
computes center of the box Generated from method MR.Box2d.center.
|
inline |
checks whether given box is fully inside (the surfaces may touch) of this box Generated from method MR.Box2d.contains.
|
inline |
checks whether given point is inside (including the surface) of this box Generated from method MR.Box2d.contains.
|
inline |
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 Generated from method MR.Box2d.corner.
|
inline |
computes length from min to max Generated from method MR.Box2d.diagonal.
|
inline |
|
inline |
|
inline |
decreases min and increased max on given value Generated from method MR.Box2d.expanded.
|
inlinestatic |
Generated from method MR.Box2d.fromMinAndSize.
|
inline |
returns closest point in the box to given point Generated from method MR.Box2d.getBoxClosestPointTo.
|
inline |
returns squared distance between this box and given one; returns zero if the boxes touch or intersect Generated from method MR.Box2d.getDistanceSq.
|
inline |
returns squared distance between this box and given point; returns zero if the point is inside or on the boundary of the box Generated from method MR.Box2d.getDistanceSq.
|
inlinestatic |
considering all planes with given normal and arbitrary shift: dot(n,x) = d finds the box's corner for which d is maximal Generated from method MR.Box2d.getMaxBoxCorner.
|
inlinestatic |
considering all planes with given normal and arbitrary shift: dot(n,x) = d finds the box's corner for which d is minimal Generated from method MR.Box2d.getMinBoxCorner.
|
inline |
returns the closest point on the box to the given point for points outside the box this is equivalent to getBoxClosestPointTo Generated from method MR.Box2d.getProjection.
|
inline |
minimally increases the box to include another box Generated from method MR.Box2d.include.
|
inline |
minimally increases the box to include given point Generated from method MR.Box2d.include.
|
inline |
Generated from method MR.Box2d.operator[].
|
inline |
decreases min and increases max to their closest representable value Generated from method MR.Box2d.insignificantlyExpanded.
Generated from method MR.Box2d.intersect.
computes intersection between this and other box Generated from method MR.Box2d.intersection.
|
inline |
checks whether this box intersects or touches given box Generated from method MR.Box2d.intersects.
|
static |
Copy contents from a wrapper class to this struct.
Generated from method MR.Box2d.operator==.
|
inline |
computes size of the box in all dimensions Generated from method MR.Box2d.size.
|
inline |
true if the box contains at least one point Generated from method MR.Box2d.valid.
|
inline |
computes the volume of this box Generated from method MR.Box2d.volume.
| MR.Vector2d MR.Box2d.max |
| MR.Vector2d MR.Box2d.min |
|
get |
min/max access by 0/1 index Generated from method MR.Box2d.operator[].