From 293e432fe9a031edb18b84abce256c0a7a031f3d Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Fri, 8 Jan 2016 18:05:09 -0800 Subject: [PATCH] Fix setter named getFocalLength --- libraries/octree/src/ViewFrustum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/octree/src/ViewFrustum.h b/libraries/octree/src/ViewFrustum.h index 596d042506..795a259a3c 100644 --- a/libraries/octree/src/ViewFrustum.h +++ b/libraries/octree/src/ViewFrustum.h @@ -48,7 +48,7 @@ public: // setters for lens attributes void setProjection(const glm::mat4 & projection); - void getFocalLength(float focalLength) { _focalLength = focalLength; } + void setFocalLength(float focalLength) { _focalLength = focalLength; } // getters for lens attributes const glm::mat4& getProjection() const { return _projection; }