|
@@ -1,7 +1,10 @@
|
|
|
#include "math/Frustum.h"
|
|
|
+#include "math/MathConstants.h"
|
|
|
|
|
|
-Frustum::Frustum(float fieldOfView, float nearClip, float farClip, const Size& size)
|
|
|
- : size(size), fieldOfView(fieldOfView), nearClip(nearClip), farClip(farClip) {
|
|
|
+Frustum::Frustum(float fieldOfView, float nearClip, float farClip,
|
|
|
+ const Size& size)
|
|
|
+ : size(size), fieldOfView(fieldOfView), nearClip(nearClip),
|
|
|
+ farClip(farClip) {
|
|
|
}
|
|
|
|
|
|
Matrix& Frustum::updateProjection() {
|
|
@@ -12,12 +15,14 @@ Matrix& Frustum::updateProjection() {
|
|
|
|
|
|
projection.set(0, Vector4(q / aspect, 0.0f, 0.0f, 0.0f));
|
|
|
projection.set(1, Vector4(0.0f, q, 0.0f, 0.0f));
|
|
|
- projection.set(2, Vector4(0.0f, 0.0f, (nearClip + farClip) * diff, (2.0f * nearClip * farClip) * diff));
|
|
|
+ projection.set(2, Vector4(0.0f, 0.0f, (nearClip + farClip) * diff,
|
|
|
+ (2.0f * nearClip * farClip) * diff));
|
|
|
projection.set(3, Vector4(0.0f, 0.0f, -1.0f, 0.0f));
|
|
|
return projection;
|
|
|
}
|
|
|
|
|
|
-void Frustum::updatePlanes(const Vector3& pos, const Vector3& right, const Vector3& up, const Vector3& front) {
|
|
|
+void Frustum::updatePlanes(const Vector3& pos, const Vector3& right,
|
|
|
+ const Vector3& up, const Vector3& front) {
|
|
|
float tan = tanf(fieldOfView * (0.5f * M_PI / 180.0f));
|
|
|
float aspect = static_cast<float>(size.width) / size.height;
|
|
|
|
|
@@ -28,21 +33,30 @@ void Frustum::updatePlanes(const Vector3& pos, const Vector3& right, const Vecto
|
|
|
float halfFarWidth = halfFarHeight * aspect;
|
|
|
|
|
|
Vector3 farCenter = pos + front * farClip;
|
|
|
- Vector3 farTopLeft = farCenter + (up * halfFarHeight) - (right * halfFarWidth);
|
|
|
- Vector3 farTopRight = farCenter + (up * halfFarHeight) + (right * halfFarWidth);
|
|
|
- Vector3 farBottomRight = farCenter - (up * halfFarHeight) + (right * halfFarWidth);
|
|
|
+ Vector3 farTopLeft =
|
|
|
+ farCenter + (up * halfFarHeight) - (right * halfFarWidth);
|
|
|
+ Vector3 farTopRight =
|
|
|
+ farCenter + (up * halfFarHeight) + (right * halfFarWidth);
|
|
|
+ Vector3 farBottomRight =
|
|
|
+ farCenter - (up * halfFarHeight) + (right * halfFarWidth);
|
|
|
|
|
|
Vector3 nearCenter = pos + front * nearClip;
|
|
|
- Vector3 nearTopLeft = nearCenter + (up * halfNearHeight) - (right * halfNearWidth);
|
|
|
- Vector3 nearBottomLeft = nearCenter - (up * halfNearHeight) - (right * halfNearWidth);
|
|
|
- Vector3 nearBottomRight = nearCenter - (up * halfNearHeight) + (right * halfNearWidth);
|
|
|
+ Vector3 nearTopLeft =
|
|
|
+ nearCenter + (up * halfNearHeight) - (right * halfNearWidth);
|
|
|
+ Vector3 nearBottomLeft =
|
|
|
+ nearCenter - (up * halfNearHeight) - (right * halfNearWidth);
|
|
|
+ Vector3 nearBottomRight =
|
|
|
+ nearCenter - (up * halfNearHeight) + (right * halfNearWidth);
|
|
|
|
|
|
- planes[0] = Plane(nearBottomRight, nearTopLeft, nearBottomLeft);
|
|
|
- planes[1] = Plane(farTopRight, farBottomRight, farTopLeft);
|
|
|
- planes[2] = Plane(nearBottomRight, nearBottomLeft, farBottomRight);
|
|
|
- planes[3] = Plane(farTopLeft, nearTopLeft, farTopRight);
|
|
|
- planes[4] = Plane(nearBottomLeft, nearTopLeft, farTopLeft);
|
|
|
- planes[5] = Plane(farBottomRight, farTopRight, nearBottomRight);
|
|
|
+ planes[0] =
|
|
|
+ Plane(nearBottomRight, nearTopLeft, nearBottomLeft);
|
|
|
+ planes[1] = Plane(farTopRight, farBottomRight, farTopLeft);
|
|
|
+ planes[2] =
|
|
|
+ Plane(nearBottomRight, nearBottomLeft, farBottomRight);
|
|
|
+ planes[3] = Plane(farTopLeft, nearTopLeft, farTopRight);
|
|
|
+ planes[4] = Plane(nearBottomLeft, nearTopLeft, farTopLeft);
|
|
|
+ planes[5] =
|
|
|
+ Plane(farBottomRight, farTopRight, nearBottomRight);
|
|
|
}
|
|
|
|
|
|
bool Frustum::isInside(const Vector3& pos) const {
|