0
votes
1answer
47 views

PyOpenGL, issue with 3D graphics on a screen using glFrustum and glTranslate

Overview: I am trying to create a 3D application similar to this: www.youtube.com/watch?v=h9kPI7_vhAU. I am using OpenCV2.2, Python2.7 and pyOpenGL. This can be achieved by this background maths ...
0
votes
1answer
43 views

opengl rotated object not centered

I am learning modern opengl(3.3), and atm I am creating my own mvp matrices. I just have some weird problem, when I try to rotate the world, my camera does not seem to rotate around the center. Here ...
1
vote
2answers
231 views

What exactly are eye space coordinates?

As I am learning OpenGL I often stumble upon so-called eye space coordinates. If I am right, you typically have three matrices. Model matrix, view matrix and projection matrix. Though I am not ...
0
votes
0answers
113 views

OpenGL, offscreen hard shadows calculation with stencil

I am trying to figure it out if and how would be possible to calculate hard shadows from multiple light-sources off-screen. preamble: scene is very complex, up to several million of triangles, up to ...
1
vote
1answer
90 views

Ways to “invert Z-axis” in shader-based core-profile OpenGL?

In my hobbyist shader-based (non-FFP) GL (3.2+ core) "engine", everything in world-space and model-space is by design "left-handed" (and to stay that way), so X-axis goes from -1 ("left") to 1 ...
0
votes
2answers
54 views

About OpenGL Matrix Multiplications

http://www.cs.uaf.edu/2007/spring/cs481/lecture/01_23_matrices.html I have just finished reading this, but i have 2 questions about multiplications. gl_Position = ...
0
votes
1answer
116 views

what program is responsible for projection in computer graphics

by projection I mean, taking 3d model data, camera data, etc, and projecting the scene into a flat 2d image that would be displayed. Does directx / opengl do this? Do they actually do it for the ...
0
votes
1answer
170 views

Projection theory? (Implimented in GLSL)

OpenGL 3.x, because I dont want to be to far behind in tech. First of all, yes I know it's a lot. I am almost certain that the vec3 transform(vec3) function is fine, If nothing else I know that it ...
0
votes
1answer
141 views

How to do perspective projection “parallax” but without changing the scale or offset of objects?

The problem: I am making a 2D game with parallax effect but I am using 3d space so am not simulating the parallax but letting the perspective projection take care of it for me. now the problem i have ...
1
vote
1answer
138 views

Perspective Issue with 3D coordinate system in OpenGL

I'm currently facing some perspective issues when trying to render the axes of a coordinate system into my scene. For these axes I draw three orthogonal lines that go through the center of my 3D cube. ...
3
votes
1answer
141 views

Can I rotate the view of glOrtho()?

I'm making a program where I need an orthographic projection. So, I'm using glOrtho(). I made a zoom function but I was wandering if you can rotate your view? Because glOrho() only looks parralel to ...
0
votes
1answer
112 views

How to get the 4x4 transformation matrix for an operation

I have this data and i need to come up with the transformation matrix: glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0); Suppose that there is a unit cube ...
2
votes
2answers
164 views

OpenGL - Correct Surface Normals after Projection

I am currently working on a little toy program with OpenGL which shows a scene in clip-space view, i.e. it draws a cube to visualize the canonical view volume and inside the cube, the projectively ...
0
votes
1answer
423 views

switch from glOrtho to gluPerspective

I have a car draw at (0,0) and some obstacles set up but right now my main concern is switching from glPerspective to glOrtho and vice-versa. All that i get when i switch from perspective to ortho is ...
0
votes
0answers
35 views

Is it Possible to texture map onto shadows in OpenGL?

After multiplying the transform matrix for shadows, the shadow are essentially drawn according to the matrix coordinates, right? Then is there a way to texture map onto the shadow? for example, ...
3
votes
1answer
245 views

OpenGL Orthographic Sketching With GL_LINE_STRIP

I am having an issue with openGL when drawing my sketched line to the screen in that it seems to be adding an extra point at the origin which is not in the point list: (0,0) is definitely not in ...
2
votes
2answers
1k views

Why does OpenGL have a far clipping plane, and what idioms are used to deal with this?

I've been learning OpenGL, and the one topic that continues to baffle me is the far clipping plane. While I can understand the reasoning behind the near clipping plane, and the side clipping planes ...
1
vote
1answer
1k views

OpenGL Perspective

I'm trying to depict a cube using a perspective projection, but all I get is the corner of a square. The face of the square is set at the origin and expands in the positive direction. Using glOrtho ...
1
vote
1answer
506 views

openGL Math book to learn matrix rotations/projection frustum settings, etc

I'm searching for a great-explained book to learn openGL matrix operations, frustum generation (something like http://www.songho.ca/opengl/gl_projectionmatrix.html but with a greater coverage on ...
0
votes
1answer
88 views

Actually where (or what way ) matrix mode switching takes place in modern opengl 3.x/4.x?

I've read much about vectors, buffer objects etc., and reviewed much of example application implementing old/new opengl operations. My app, including object loading, transformations and ...
1
vote
1answer
195 views

How to get the projection plane in OpenGL

I use the gluPerspective and glLookAt to set my projection matrix and view matrix. If I want to get the coordinate of the eye, it's the first three arguments in the gluLookAt, right? However, now I ...
0
votes
2answers
617 views

How to get a Ray from 'gluUnProject'

my basic question is - what is the proper way to use 'gluUnProject' to get a Ray or normal vector from my mouse/cursor position. I have converted the 'gluUnProject' code to C# from the mesa glu C ...
3
votes
3answers
3k views

Perspective Projection with OpenGL

I am confused about perspective projection. Here is the scenario that is confusing me. My frustrum's front plane is basically positioned at at positive z-axis and the back plane at a -ive axis and ...
3
votes
1answer
429 views

Isometric Projection using Opengl

I am trying to use opengl to make isometric drawings. According to: http://en.wikipedia.org/wiki/Isometric_projection#Mathematics "this is done by first looking straight towards one face. Next the ...
0
votes
1answer
1k views

Why does this Perspective Projection Matrix Calculation not give the correct result?

I can't quite figure this out. I've got an OpenGL application I'm converting from the old fixed function pipeline to the programmable pipeline, and getting rid of the deprecated functions I've been ...
0
votes
1answer
567 views

OpenGL left-handed coordinate system

I'm writing a 3D OpenGL app and I'm having problems with my vertex translation matrix. Here's my vertex shader: attribute vec4 vInPos; uniform mat4 kWorld; uniform mat4 kProj; void main( ...
1
vote
2answers
872 views

using Projection in OpenGL using C#?

For those who don't know, Tao.opengl, Tao.freeglut are required for the C# console application. Now, for my problem: my tutor asked us to draw 4 rectangles, so I drew them successfully. and ...
1
vote
3answers
821 views

Projecting a 3D point to 2D screen coordinate OpenTK

Using Monotouch and OpenTK I am trying to get the screen coordinate of one 3D point. I have my world view projection matrix set up, and OpenGL makes sense of it and projects my 3D model perfectly, but ...
2
votes
2answers
192 views

why the projection matrix must be double?

Here is the problem, I have a ModelViewProjection(MVP) Matrix that is made from multiplying ModelView with Projection; I have made some functions that does the same thing as glOrtho and gluPerspective ...
3
votes
2answers
504 views

3D Projection Mapping

I'm trying to use a common LCD projector to shine an image onto a simple 3D shape, but do it in a repeatable way. What I need: My simplest example is, I place a cube on a table, place a projector ...
1
vote
1answer
251 views

MVP matrix not working outside of shader?

Odd problem here, I've been converting my current project from Qt's native matrix/vector classes to Eigen's, but I've come across an issue that I can't work out. I calculate the MVP for the shader ...
0
votes
1answer
974 views

How to draw cube at some world coordinates, OpenGL

I have this code that doing this, but it don't work at all! GLdouble *posv = Utils::worldToScreen(px, py, pz); GLdouble x = posv[0]; GLdouble y = posv[1]; GLdouble z = posv[2]; GLdouble *sizev = ...
5
votes
2answers
833 views

opengl oblique projection

I want to create a oblique (cavalier) projection in OpenGL. I know this operation is not default supported and instead I need a Shear Matrix and then make an Orthogonal Projection. Can you tell me ...
1
vote
1answer
134 views

glortho zox plane projection

I need to make an opengl projection on a plane paralel with XOZ plane (perpendicular on OY). Can you explain me what parameters I should use with glOrtho to make this projection. Thanks,
1
vote
1answer
749 views

3D Projection Issue: Z Value doesn't lie in [1,-1] after Perspective Divide

I'm trying to do a simple perspective projection in the process of rasterizing a 3D point. Here are all the matrices and other info. All Matrices are row major. The coordinate system is Right Handed. ...
0
votes
1answer
548 views

3D Projection (onto 2D) regarding attributes other than position, color

basically it is the same thing OpenGL does. I want to project a 3D model to 2D plane where the 3D model has vertices and faces which have many attributes along with coordinates or colors. Namely I ...
5
votes
3answers
986 views

Mapping from 2D projection back to 3D point cloud

I have a 3D model consisting of point vertices (XYZ) and eventually triangular faces. Using OpenGL or camera-view-matrix-projection I can project the 3D model to a 2D plane, i.e. a view window or an ...
0
votes
1answer
234 views

Projection Matrix Found in Collada Scene

I have a question concerning a current projection matrix that i need to add for a model rendered in opengl. The projection matrix is found in a collada file for placing a Group in a different ...
0
votes
2answers
784 views

Orthographic projection of a sphere to get a circle (OpenGL — newbie)

I am trying to draw a very simple, black and white stick figure whose head is a sphere. The background is black and I am drawing with white color. The orthographic projection of the sphere head should ...
0
votes
2answers
233 views

Where can I call gluUnproject?

This is a really simple question. Where can I call gluUnproject? Do I need a current openGL context of some kind? I looked up the function here, but that isn't telling me if there's any kind of ...
2
votes
1answer
2k views

OpenGL gluProject() - strange results

I'm tying to use gluProject function, to get point coordinates in 2d window after "rendering". The problem is, that I get strange results. For example: I've got a point with x=16.5. When I use ...
0
votes
2answers
308 views

Mapping points onto a 2D texture

Hey this may sound simple but it escapes me, I have a list of 3D points (including negative positions) that I would like to map onto a 2D Texture. I'm trying to figure out how to map the points ...
1
vote
1answer
460 views

Resource for understanding view, projection, 'virtual camera' in OpenGL or graphics in general

I noticed most resources either assume you know a lot already or assume you know math of professional level or assume you're going to find other resources to fill gaps. Is there a resource that takes ...
1
vote
1answer
177 views

How do I change the Projection so it shows my object?

I have an 2D object (GL_QUAD) with size (W,H) and sitting at (-W*0.5, -H*0.5). I'd rather not resize the object, because I need to be able to select points on that object relative to the texture. ...
3
votes
2answers
1k views

Radius of projected Sphere

i want to refine a previous question: How do i project a sphere onto the screen? (2) gives a simple solution: approximate radius on screen = world radius * cot(fov / 2) / Z with: fov = field of ...
2
votes
2answers
478 views

OpenGl box fullscreen

I'd like to draw the inside of a box fullscreen (i.e. it should completely fill the viewport) using OpenGL. The box should have perspective. I presume I'll have to change the dimensions of the box ...
5
votes
3answers
2k views

Fisheye projection matrix in Xna/OpenGL - 3D

I'm looking for a projection matrix I can use in 3D that will give me the effect of a fisheye. I'm not looking for a pixelshader or anything like that, that will manipulate pixels - but the actual ...
4
votes
2answers
596 views

Z Value after Perspective Divide is always less than -1

So I'm writing my own custom 3D transformation pipeline in order to gain a better understanding of how it all works. I can get everything rendering to the screen properly and I'm now about to go back ...
2
votes
1answer
1k views

Orthogonal projection and texture coordinates in opengl

I'm writing a 2D game in Opengl. I already set up the orthogonal projection so I can easily know where a quad will end up on screen. The problem is, I also want to be able to map pixels directly to ...
3
votes
2answers
731 views

c++ opengl: how can i combine 2 different projection types for 3d graphics and 2d menus?

I would like to use Oblique projection for menus and perspective projection for the 3d-scene. is there a way to combine between this two projections ? In general I'm asking how can I create menus in ...

1 2