Skip to content

Commit

Permalink
prepare glm 0.9.9 branch (#6338)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxillo authored and arturoc committed Jul 27, 2019
1 parent 9707492 commit 5fa86b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libs/openFrameworks/3d/ofNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ void ofNode::lookAt(const glm::vec3& lookAtPosition, glm::vec3 upVector) {
if (glm::length(zaxis) > 0) {
auto xaxis = glm::normalize(glm::cross(upVector, zaxis));
auto yaxis = glm::cross(zaxis, xaxis);
glm::mat3 m(glm::uninitialize);
glm::mat3 m;
m[0] = xaxis;
m[1] = yaxis;
m[2] = zaxis;
Expand Down
1 change: 1 addition & 0 deletions libs/openFrameworks/types/ofRectangle.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include "ofConstants.h"
#include <glm/vec3.hpp>
#include <glm/vec2.hpp>



Expand Down

0 comments on commit 5fa86b5

Please sign in to comment.