Fix setter named getFocalLength

This commit is contained in:
Zach Pomerantz 2016-01-08 18:05:09 -08:00
parent c1e8fe88e4
commit 293e432fe9

View file

@ -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; }