73 if (Vector3::computeDotProduct(p.getNormal(), vertex) + p.getDistance() < 0.0f) {
89 if (Vector3::computeDotProduct(p.getNormal(), center) + p.getDistance() < -radius) {
102 auto minX = b->
getMin()[0];
103 auto minY = b->
getMin()[1];
104 auto minZ = b->
getMin()[2];
105 auto maxX = b->
getMax()[0];
106 auto maxY = b->
getMax()[1];
107 auto maxZ = b->
getMax()[2];
110 auto& normal = p.getNormal();
111 auto distance = p.getDistance();
112 if (Vector3::computeDotProduct(normal, point.
set(minX, minY, minZ)) + distance > 0.0f)
continue;
113 if (Vector3::computeDotProduct(normal, point.
set(maxX, minY, minZ)) + distance > 0.0f)
continue;
114 if (Vector3::computeDotProduct(normal, point.
set(minX, maxY, minZ)) + distance > 0.0f)
continue;
115 if (Vector3::computeDotProduct(normal, point.
set(maxX, maxY, minZ)) + distance > 0.0f)
continue;
116 if (Vector3::computeDotProduct(normal, point.
set(minX, minY, maxZ)) + distance > 0.0f)
continue;
117 if (Vector3::computeDotProduct(normal, point.
set(maxX, minY, maxZ)) + distance > 0.0f)
continue;
118 if (Vector3::computeDotProduct(normal, point.
set(minX, maxY, maxZ)) + distance > 0.0f)
continue;
119 if (Vector3::computeDotProduct(normal, point.
set(maxX, maxY, maxZ)) + distance > 0.0f)
continue;
static constexpr int32_t PLANE_FAR
static constexpr int32_t PLANE_LEFT
static constexpr int32_t PLANE_RIGHT
bool isVisible(BoundingBox *b)
Checks if bounding box is in frustum.
Matrix4x4 modelViewMatrixTransposed
bool isVisible(const Vector3 &vertex)
Checks if given vertex is in frustum.
static constexpr int32_t PLANE_BOTTOM
const array< Plane, 6 > & getPlanes()
static constexpr int32_t PLANE_TOP
bool isVisible(Sphere *s)
Checks if sphere is in frustum.
void update()
Setups frustum, should be called if frustum did change.
static constexpr int32_t PLANE_NEAR
Matrix4x4 projectionMatrixTransposed
Frustum(Renderer *renderer)
Public constructor.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
const Vector3 & getCenter() const
Plane entity, this is not directly connectable with physics engine.
Sphere physics primitive.
Vector3 & set(float x, float y, float z)
Set up vector.