MeshLib C# Docs
Loading...
Searching...
No Matches
MR.Box_Box2f Class Reference

Box given by its min- and max- corners Generated from class MR.Box2f. This is the non-const reference to the struct. More...

+ Inheritance diagram for MR.Box_Box2f:

Public Member Functions

unsafe Box_Box2f (Box2f other)
 Make a copy of a struct. (Even though we initially pass is_owning: false, we then use the copy constructor to produce an owning instance.)
 
unsafe Box_Box2f (ConstBox_Box2f _other)
 Generated copy constructor.
 
void Assign (ConstBox_Box2f _other)
 Generated copy assignment.
 
unsafe Box_Box2f ()
 Constructs an empty (default-constructed) instance.
 
unsafe Box_Box2f (in MR.Vector2f min, in MR.Vector2f max)
 Generated from constructor MR.Box2f.Box2f.
 
unsafe Box_Box2f (MR.Const_NoInit _1)
 Generated from constructor MR.Box2f.Box2f.
 
unsafe void include (in MR.Vector2f pt)
 minimally increases the box to include given point Generated from method MR.Box2f.include.
 
unsafe void include (in MR.Box2f b)
 minimally increases the box to include another box Generated from method MR.Box2f.include.
 
unsafe ref MR.Box2f intersect (in MR.Box2f b)
 Generated from method MR.Box2f.intersect.
 
- Public Member Functions inherited from MR.ConstBox_Box2f
unsafe ConstBox_Box2f (Box2f other)
 Make a copy of a struct. (Even though we initially pass is_owning: false, we then use the copy constructor to produce an owning instance.)
 
virtual void Dispose ()
 
unsafe ConstBox_Box2f (ConstBox_Box2f _other)
 Generated copy constructor.
 
unsafe ConstBox_Box2f ()
 Constructs an empty (default-constructed) instance.
 
unsafe ConstBox_Box2f (in MR.Vector2f min, in MR.Vector2f max)
 Generated from constructor MR.Box2f.Box2f.
 
unsafe ConstBox_Box2f (MR.Const_NoInit _1)
 Generated from constructor MR.Box2f.Box2f.
 
unsafe bool valid ()
 true if the box contains at least one point Generated from method MR.Box2f.valid.
 
unsafe MR.Vector2f center ()
 computes center of the box Generated from method MR.Box2f.center.
 
unsafe MR.Vector2f 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.Box2f.corner.
 
unsafe MR.Vector2f size ()
 computes size of the box in all dimensions Generated from method MR.Box2f.size.
 
unsafe float diagonal ()
 computes length from min to max Generated from method MR.Box2f.diagonal.
 
unsafe float volume ()
 computes the volume of this box Generated from method MR.Box2f.volume.
 
unsafe bool contains (in MR.Vector2f pt)
 checks whether given point is inside (including the surface) of this box Generated from method MR.Box2f.contains.
 
unsafe bool contains (in MR.Box2f otherbox)
 checks whether given box is fully inside (the surfaces may touch) of this box Generated from method MR.Box2f.contains.
 
unsafe MR.Vector2f getBoxClosestPointTo (in MR.Vector2f pt)
 returns closest point in the box to given point Generated from method MR.Box2f.getBoxClosestPointTo.
 
unsafe bool intersects (in MR.Box2f b)
 checks whether this box intersects or touches given box Generated from method MR.Box2f.intersects.
 
unsafe MR.Box2f intersection (in MR.Box2f b)
 computes intersection between this and other box Generated from method MR.Box2f.intersection.
 
unsafe float getDistanceSq (in MR.Box2f b)
 returns squared distance between this box and given one; returns zero if the boxes touch or intersect Generated from method MR.Box2f.getDistanceSq.
 
unsafe float getDistanceSq (in MR.Vector2f 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.Box2f.getDistanceSq.
 
unsafe MR.Vector2f getProjection (in MR.Vector2f 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.Box2f.getProjection.
 
unsafe MR.Box2f expanded (in MR.Vector2f expansion)
 decreases min and increased max on given value Generated from method MR.Box2f.expanded.
 
unsafe MR.Box2f insignificantlyExpanded ()
 decreases min and increases max to their closest representable value Generated from method MR.Box2f.insignificantlyExpanded.
 
bool Equals (MR.ConstBox_Box2f? a)
 
override bool Equals (object? other)
 

Properties

unsafe new ref Box2f _Ref [get]
 Get the underlying struct.
 
new ref MR.Vector2f min [get]
 
new ref MR.Vector2f max [get]
 
unsafe new ref MR.Vector2f this[int e] [get]
 Generated from method MR.Box2f.operator[].
 
- Properties inherited from MR.ConstBox_Box2f
unsafe ref readonly Box2f _Ref [get]
 Get the underlying struct.
 
ref readonly MR.Vector2f min [get]
 
ref readonly MR.Vector2f max [get]
 
static unsafe int Elements [get]
 
unsafe ref readonly MR.Vector2f this[int e] [get]
 min/max access by 0/1 index Generated from method MR.Box2f.operator[].
 
- Properties inherited from MR.Misc.Object< ConstBox_Box2f >
virtual bool _IsOwning [get]
 Returns true if this is an owning instance, and when disposed, will destroy the underlying C++ instance. If false, we assume that the underlying C++ instance will live long enough.
 

Additional Inherited Members

- Static Public Member Functions inherited from MR.ConstBox_Box2f
static implicit operator ConstBox_Box2f (Box2f other)
 Convert from a struct by copying it. Note that only ConstBox_Box2f has this conversion, Box_Box2f intentionally doesn't.
 
static unsafe MR.Box2f fromMinAndSize (in MR.Vector2f min, in MR.Vector2f size)
 Generated from method MR.Box2f.fromMinAndSize.
 
static unsafe MR.Vector2b getMinBoxCorner (in MR.Vector2f 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.Box2f.getMinBoxCorner.
 
static unsafe MR.Vector2b getMaxBoxCorner (in MR.Vector2f 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.Box2f.getMaxBoxCorner.
 
static unsafe bool operator== (MR.ConstBox_Box2f _this, MR.ConstBox_Box2f a)
 Generated from method MR.Box2f.operator==.
 
static unsafe bool operator!= (MR.ConstBox_Box2f _this, MR.ConstBox_Box2f a)
 
- Protected Member Functions inherited from MR.ConstBox_Box2f
virtual unsafe void Dispose (bool disposing)
 
- Protected Attributes inherited from MR.Misc.Object< ConstBox_Box2f >
bool _IsOwningVal
 

Detailed Description

Box given by its min- and max- corners Generated from class MR.Box2f. This is the non-const reference to the struct.


The documentation for this class was generated from the following file: