GLM is a C++ math library designed to mimic the OpenGL Shading Language's math functions and types (vectors, matrices) as closely as possible.
0
votes
0answers
30 views
GLM matrix 4X4 (mat4) to array and back
I need to put a glm math library mat4 into a sqlite3 BLOB and back. What would be the most efficient approach? Serialize mat4 to bytes?, Turn mat4 to a float array? BLOB will not take a mat4 directly
...
0
votes
0answers
47 views
Retrieving vector data pointer for passing array of 2D vectors
I have OpenGL method :
glStencilFillPathInstancedNV(6, glyphBase,
GL_UNSIGNED_BYTE, "OpenGL",
GL_PATH_FILL_MODE_NV, 0xFF,
...
0
votes
1answer
66 views
Determining the Right Vector of an object with a Rotation Matrix
I am attempting to locate get Right vector of an object that I have already computed a Rotation Matrix for, so that it can strafe in 3d space. Thus far I have gotten
glm::quat gOrientation2 = ...
0
votes
1answer
31 views
Using uniform parameters in OpenGL (using glm)
I have to do the following: "Split a texture into parts. You have one texture, and you should pass the texture coordinates az uniform parameters."
Specifically, I have 15 cubes, and I want to apply ...
0
votes
1answer
57 views
Is there a Java OpenGL matrix library? [closed]
I realize this question has probably been asked many times before, but I can't seem to find the answer.
I'm learning to do OpenGL in Java, but most of the tutorials and books out there are in C or ...
0
votes
1answer
91 views
Incorrect rotations using openGL GLM and shaders
The goal of my program is to display a simple colored triangle rotating on the Y axis without any translation. I'm using the GLM library. The problem is that the transformations of my triangle are not ...
0
votes
1answer
166 views
OpenGL mathematics (GLM) port for Java [closed]
is there any Java port for GLM library ? I'm using LWJGL and I'm missing some nice capabilities of GLM.
I have seen mention about port in this answer, but I don't know how to contact the person that ...
0
votes
1answer
371 views
OpenGL, GLM Quaternion Rotations
I'm updating an old OpenGL project and I'm switching all the (deprecated) glMatrix() functions for matrices and quaternions, and I'm having trouble getting the rotation working.
My drawing looks like ...
1
vote
1answer
54 views
Adjusting camera view after translation and rotation
I'm trying to make a scene of a "walking camera" in a room.
For now, i cant see anything, let alone rotation and translation, and i cant figure out why.
Please note, that before i used the look at ...
0
votes
2answers
107 views
How to create billboard matrix in glm
How to create a billboard translation matrix from a point in space using glm?
0
votes
1answer
81 views
Determine position in front of quaternion with GLM?
Is there a way to calculate the XYZ position in front of a quaternion (XYZW) rotation, preferably using GLM?
I know the Quat rotation and the Position of the object I want to calculate the position ...
0
votes
1answer
166 views
glm::unProject to convert mouse position to 3 coordinates
I am using OpenGL 3.2 + GLM for my matrix math. Below is my code:
GLint viewport[4];
GLfloat winZ;
glGetIntegerv(GL_VIEWPORT,viewport);
glBindFramebuffer(GL_FRAMEBUFFER,fbo);
...
1
vote
0answers
377 views
How to rotate a GLM quaternion correctly?
I want to rotate my car by 90 degrees to the left in the game I have.
When I use this code:
glm::quat rot(info.Rotation.w,info.Rotation.x,info.Rotation.y,info.Rotation.z);
...
0
votes
0answers
109 views
GLM Library in OpenGL ES
I haven't programmed in Java for 3 years and because of that I'm kinda clumsy with it.
The problem is that i have to develop a Android App with OpenGL ES. Now I'm wondering how I should do my 3D ...
0
votes
0answers
225 views
OpenGL 3.2 trouble setting up matrices
I am using GLM to manage my matrices, but I am running in to some problems that make no sense to me. When I set the projection matrix to anything other than an identity matrix, I can't see the square ...
0
votes
1answer
96 views
What compile/linking mechanism is glm using?
I'm currently working with OpenGL use glm library, I see each header file (*.hpp) had it own implementation file (*.inl) but how can it auto-compile (or linking) glm each time we compile project? For ...
0
votes
1answer
86 views
GLM - Are vectors and matrices guaranteed to be memory equivalent to their GLSL counterparts?
Intuitively I'd say yes, because otherwise this whole "following the GLSL specification" thing wouldn't really make that much sense. I didn't find this explicitly mentioned anywhere though. In code, ...
1
vote
1answer
415 views
Zoom in on current mouse position in OpenGL using GLM functionality
I'm despairing of the task to zoom in on the current mouse position in OpenGL. I've tried a lot of different things and read other posts on this, but I couldn't adapt the possible solutions to my ...
1
vote
0answers
96 views
GLM Math: error: invalid cast from type 'const glm::detail::tvec3<float>' to type 'float'|
I'm casting a glm type to an normal array using glm::value_ptr() as follows
glm::vec4 position;
glm::mat3 orient;
...
glm::mat4 transformMatrix=glm::translate( glm::mat4(orient) , ...
1
vote
1answer
139 views
GLM Math lib compile errors with GCC [duplicate]
Possible Duplicate:
C++ operator overloading: no known conversion from object to reference?
I am using GLM lib (version 0.9.4) for an OpenGL renderer which I port now to Linux.I had no ...
0
votes
1answer
93 views
When supplied with an axis and quaternion, how can I get the angle with GLM?
I am using a GLM quaternion to represent an orientation for an object.
Basically, I would like to add the ability to extract the angle of an axis from the quat. I don't know if this is what I need to ...
0
votes
1answer
113 views
Displace cube into origin with OpenGL
I'm drawing a bunch of points inside a 64x64x64 cube and can't figure out how to displace the origin so that rotations are done around the center of the cube.
My vertex data is stored inside a 1D ...
2
votes
1answer
554 views
Issue with GLM Camera X,Y Rotation introducing Z Rotation
So I've been having trouble with a camera I've implemented in OpenGL and C++ using the GLM library. The type of camera I'm aiming for is a fly around camera which will allow easy exploration of a 3D ...
0
votes
0answers
187 views
how to normalize a matrix in glm
how do i normalize a matrix in an easy and clear way? in the glm mathematics library?
im getting a slight round off error whe using the code below
glm::mat4 modelMatrix = glm::rotate(glm::mat4(), ...
0
votes
3answers
468 views
Applying Camera Transformations to OpenGL
I'm attempting to create a Camera class for a 3D OpenGL project. However I cannot figure out how to actually apply the camera to my scene. I have these Camera functions (amongst others):
void ...
0
votes
1answer
242 views
error while multiply matrix and vector with GLM
i get this error while trying multiply matrix and vector with GLM following this tutorial.
reading1.cpp: In function ‘int main()’:
reading1.cpp:50:44: error: conversion from ...
2
votes
1answer
736 views
How can I transform a glm::vec3 by a glm::mat4
I want to transform a glm::vec3 ( camera.target) by a glm::mat4(camera.rotationMatrix). I try multiply this give me an error:error: no match for 'operator*' in 'originalTarget * ...
0
votes
1answer
242 views
Camera following player opengl
I have been looking into this problem for a while now but I can't find a solution.
Right now my camera follows the players position correctly but the rotation of the camera goes wrong. If I only use ...
0
votes
0answers
74 views
Free view camera locking itself on a point
I'm programming a little 3D engine with OpenGL and SFML and I tried to implement a Free View camera for debuging purpose. I used the code From the wikibook, but i've must have done something wrong : ...
0
votes
2answers
179 views
Rotating an object and its 'children'
Right now I'm rotating an object, lets call it 'mainBody' but attached to the mainBody are several attachments and when I rotate my mainBody they are supposed to rotate along as well, but right now ...
1
vote
1answer
219 views
opengl rotate an object to set its correct face before render on screen
I am loading an object through an obj file in opengl using GLM Library but it comes out on the screen upside down. Also i am providing a capability to user so he can rotate all the objects accordingly ...
5
votes
1answer
1k views
Is glm::ortho() actually wrong?
I recently thought it would be a good idea to switch from the old (deprecated) functionality that OpenGL provides, such as matrix operations and the fixed function pipeline.
I am using GLM as my ...
2
votes
2answers
3k views
Rotating a Open GL camera correctly using GLM
I have a camera class, which is initialized like so:
CameraFP::CameraFP() {
this->aspect_ratio = 800.0f / 600.0f;
this->fov = 45.0f;
this->near_plane = 0.1f;
...
3
votes
1answer
347 views
Creating a First Person camera in Open GL 2.0 and glm
I am farly new to Open GL, and c++ and have come across the issue of creating a first person camera. I don't understand matrix math so that makes it all the more harder for me. So far, for calculating ...
2
votes
0answers
392 views
OpenGL/GLSL/GLM - Skybox rotates as if in 3rd person
I have just gotten into implementing skyboxes and am doing so with OpenGL/GLSL and GLM as my math library. I assume the problem is matrix related and I haven't been able to find an implementation that ...
