Box Structure
Represents a three dimensional bounding box.
Namespace: Carmenta.Engine
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Thread safety: Members defined in this class are thread-safe.
Syntax
public struct Box :
System.IEquatable<Box>
Platforms
Windows, Linux, Android
Box Members
The Box type has the following members.
Constructors
Name | Description |
---|---|
Box | Initializes a new instance of the Box class. |
Properties
Name | Description |
---|---|
Center | Gets the center of the Box. |
Depth | Gets the depth of the Box. |
Height | Gets the height of the Box. |
Width | Gets the width of the Box. |
XMax | Gets the maximum x-coordinate of the Box. |
XMin | Gets the minimum x-coordinate of the Box. |
YMax | Gets the maximum y-coordinate of the Box. |
YMin | Gets the minimum y-coordinate of the Box. |
ZMax | Gets the maximum z-coordinate of the Box. |
ZMin | Gets the minimum z-coordinate of the Box. |
Methods
Name | Description |
---|---|
Equals | Overloaded. Determines whether two Box objects have the same value. |
Extend | Returns a Box where the coordinate of each side has been extended by the specified amount. |
GetHashCode | Returns the hash code for this Box. |
Inside | Checks whether the specified Point is inside or on the border of the current Box. |
Determines whether two specified Box objects have the same value. | |
Determines whether two specified Box objects have different values. | |
Overlap | Checks whether the current Box overlaps or touches the specified Box. |
StrictlyInside | Checks whether the specified Point is inside the current Box. |
StrictlyOverlap | Checks whether the specified Box overlaps the specified Box. |
ToString | Converts this Box to a human readable string. |