vrbox
Module: Maths
A box.
#include <lua_api.h>
Public Functions
Type | Name |
---|---|
boolean | contains(Any b) (vrTestContain) Returns whether or object A completly contains object B. |
Any | copy() (vrCopy) Returns a copy of a Vector, Matrix, Ray, Sphere, AABBox, Quaternion or Plane |
number | getExtent() (vrAABoxExtent) Returns the largest dimension of an axis aligned bounding box. |
boolean | intersects(Any b) (vrTestIntersection) Returns whether or not two objects are intersecting one another. |
vrbox | merge(vrbox](../classes/vrbox.mdx) r) (vrAABoxMerge) Returns an axis aligned bounding box that contains two other bounding boxes. |
Any | operator=() |
vrbox | transform(vrmatrix4](../classes/vrmatrix4.mdx) matrix) (vrAABoxTransform) Returns an axis aligned bounding box transformed by a matrix. |
Public Attributes
Type | Name |
---|---|
vrvec3 | center Centre of the box. |
vrvec3 | centre Centre of the box. |
vrvec3 | dimensions Dimensions of the box. |
vrvec3 | max Maximum in each axis of the box. |
vrvec3 | min Minimum in each axis of the box. |
Public Functions Documentation
contains
boolean contains(
Any b
)
(vrTestContain) Returns whether or object A completly contains object B.
Parameters:
- b A sphere, AABB, or vec3
Return: true if b is inside a
copy
Any copy()
(vrCopy) Returns a copy of a Vector, Matrix, Ray, Sphere, AABBox, Quaternion or Plane
getExtent
number getExtent()
(vrAABoxExtent) Returns the largest dimension of an axis aligned bounding box.
intersects
boolean intersects(
Any b
)
(vrTestIntersection) Returns whether or not two objects are intersecting one another.
Parameters:
- b A sphere or AABB
Return: True if the objects are intersecting
merge
vrbox merge(
vrbox r
)
(vrAABoxMerge) Returns an axis aligned bounding box that contains two other bounding boxes.
operator=
Any operator=()
transform
vrbox transform(
vrmatrix4 matrix
)
(vrAABoxTransform) Returns an axis aligned bounding box transformed by a matrix.
Public Attributes Documentation
center
vrvec3 center;
Centre of the box.
centre
vrvec3 centre;
Centre of the box.
dimensions
vrvec3 dimensions;
Dimensions of the box.
max
vrvec3 max;
Maximum in each axis of the box.
min
vrvec3 min;
Minimum in each axis of the box.