Struct BoundingBox
Represents an axis-aligned bounding box
Implements
Inherited Members
Namespace: SharpAssimp
Assembly: SharpAssimp.dll
Syntax
public record struct BoundingBox : IEquatable<BoundingBox>
Constructors
| Edit this page View SourceBoundingBox(Vector3, Vector3)
Represents an axis-aligned bounding box
Declaration
public BoundingBox(Vector3 Min, Vector3 Max)
Parameters
| Type | Name | Description |
|---|---|---|
| Vector3 | Min | Minimum point of the bounding box. |
| Vector3 | Max | Maximum point of the bounding box. |
Properties
| Edit this page View SourceMax
Maximum point of the bounding box.
Declaration
public Vector3 Max { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| Vector3 |
Min
Minimum point of the bounding box.
Declaration
public Vector3 Min { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| Vector3 |