Tagged Questions
0
votes
0answers
24 views
Ray world position to local position
I've got a little problem with my picking module and I need your help.
I have a method to project a ray from the camera to a fixed point when I click somewhere. The computed ray looks good, it go to ...
6
votes
2answers
1k views
Quaternions -> Euler Angles -> Rotation Matrix trouble (GLM)
I'm writing a program that loads a file containing a scene description and then displays it using OpenGL. I'm using GLM for all of my math operations. Rotations in the scene file are stored in ...
3
votes
1answer
202 views
Combining yaw and pitch together
Why doesn't resultA equal resultB? I have no idea what I'm doing wrong. Can you give me an explanation?
float alpha = glm::radians(45.0f);
glm::mat4 xRot(glm::vec4(1, 0, 0, 0),
...
3
votes
1answer
134 views
How to vectorize equations?
I'm trying to implement the Softmax regression algorithm to solve the K-classifier problem after watching Professor Andrew Ng's lectures on GLM. I thought I understood everything he was saying until ...
7
votes
2answers
3k views
How to initialize a glm::mat4 with an array?
I'm using the OpenGL Mathematics Library (glm.g-truc.net) and want to initialize a glm::mat4 with a float-array.
float aaa[16];
glm::mat4 bbb(aaa);
This doesn't work.
I guess the solution is ...