From 63c6b2aab34ba10ef642ff0ffadc5b1e7c823cc4 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 18 Jan 2023 08:34:43 -0500 Subject: [PATCH] spelling: failure Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- includes/learnopengl/entity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/learnopengl/entity.h b/includes/learnopengl/entity.h index aee9a80..6ec706f 100644 --- a/includes/learnopengl/entity.h +++ b/includes/learnopengl/entity.h @@ -197,7 +197,7 @@ struct Sphere : public BoundingVolume //Max scale is assuming for the diameter. So, we need the half to apply it to our radius Sphere globalSphere(globalCenter, radius * (maxScale * 0.5f)); - //Check Firstly the result that have the most chance to faillure to avoid to call all functions. + //Check Firstly the result that have the most chance to failure to avoid to call all functions. return (globalSphere.isOnOrForwardPlane(camFrustum.leftFace) && globalSphere.isOnOrForwardPlane(camFrustum.rightFace) && globalSphere.isOnOrForwardPlane(camFrustum.farFace) &&