Unigine.WorldBoundFrustum Class
This class serves to construct the bounding frustum in double precision coordinates.
WorldBoundFrustum Class
Members
WorldBoundFrustum()
Default constructor.WorldBoundFrustum(mat4 projection, dmat4 modelview)
Constructor. Initializes the bounding frustum by given matrices.Arguments
- mat4 projection - A projection matrix.
- dmat4 modelview - A modelview matrix.
WorldBoundFrustum(WorldBoundFrustum bf)
Constructor. Initializes by given bounding frustum.Arguments
- WorldBoundFrustum bf - The bounding frustum.
WorldBoundFrustum(WorldBoundFrustum bf, dmat4 itransform)
Constructor. Initializes by given bounding frustum and transformation matrix.Arguments
- WorldBoundFrustum bf - The bounding frustum.
- dmat4 itransform - The inverse transformation matrix.
void set(mat4 projection, dmat4 modelview)
Sets the bounding frustum by given matrices.Arguments
- mat4 projection - A projection matrix.
- dmat4 modelview - A modelview matrix.
void set(WorldBoundFrustum bf)
Sets the bounding frustum by given bounding frustum.Arguments
- WorldBoundFrustum bf - The bounding frustum.
void set(WorldBound bf, dmat4 itransform)
Sets the bounding frustum by given bounding frustum and transformation matrix.Arguments
- WorldBound bf - The bounding frustum.
- dmat4 itransform - The inverse transformation matrix.
dvec3 getCamera()
Returns the position of the camera.Return value
Camera position.dmat4 getModelview()
Gets the bounding frustum modelview matrix.Return value
The bounding frustum modelview matrix.dvec4 getPlanes()
Gets the bounding frustum cliping planes array.Return value
The bounding frustum cliping planes array.dmat4 getProjection()
Gets the bounding frustum modelview matrix.Return value
The bounding frustum projection matrix.int isValid()
Checks the bounding frustum status.Return value
1 if the bounding frustum is valid.void clear()
Clears the bounding frustum.int inside(dvec3 point, double radius)
Checks if the sphere is inside the bounding frustum.Arguments
- dvec3 point - The coordinates of the center of the sphere.
- double radius - The sphere radius.
Return value
1 if the sphere is inside the bounding frustum; otherwise, 0.int inside(dvec3 min, dvec3 max)
Checks if the box is inside the bounding frustum.Arguments
- dvec3 min - The box minimum coordinate.
- dvec3 max - The box maximum coordinate.
Return value
1 if the box is inside the bounding frustum; otherwise, 0.int inside(WorldBoundBox bb)
Checks if the bounding box is inside the bounding frustum.Arguments
- WorldBoundBox bb - The bounding box.
Return value
1 if the bounding box is inside the bounding frustum; otherwise, 0.int inside(WorldBoundSphere bs)
Checks if the bounding sphere is inside the bounding frustum.Arguments
- WorldBoundSphere bs - The bounding sphere.
Return value
1 if the bounding sphere is inside the bounding frustum; otherwise, 0.int insideAll(WorldBoundBox bb)
Checks if the whole given bounding box is inside the current bounding frustum.Arguments
- WorldBoundBox bb - The bounding box.
Return value
1 if the whole box is inside the bounding frustum; otherwise, 0.int insideAll(WorldBoundSphere bs)
Checks if the whole given bounding sphere is inside the current bounding frustum.Arguments
- WorldBoundSphere bs - The bounding sphere.
Return value
1 if the whole sphere is inside the bounding frustum; otherwise, 0.~BoundFrustum()
Destructor.Last update: 2018-08-10
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)