mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 08:49:05 +02:00
Fix setter named getFocalLength
This commit is contained in:
parent
c1e8fe88e4
commit
293e432fe9
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public:
|
||||||
|
|
||||||
// setters for lens attributes
|
// setters for lens attributes
|
||||||
void setProjection(const glm::mat4 & projection);
|
void setProjection(const glm::mat4 & projection);
|
||||||
void getFocalLength(float focalLength) { _focalLength = focalLength; }
|
void setFocalLength(float focalLength) { _focalLength = focalLength; }
|
||||||
|
|
||||||
// getters for lens attributes
|
// getters for lens attributes
|
||||||
const glm::mat4& getProjection() const { return _projection; }
|
const glm::mat4& getProjection() const { return _projection; }
|
||||||
|
|
Loading…
Reference in a new issue