Tagged Questions
The orthographic tag has no wiki summary.
3
votes
2answers
94 views
Problems with changing the Orthogonal Projection Matrix
I was experimenting with opengles, and made some simple squares moving around the screen:
//inside my renderScreen() method, called from onDrawFrame()
gl.glClear(GL10.GL_COLOR_BUFFER_BIT | ...
3
votes
2answers
738 views
Switching OpenGL to perspective mode on top of a half rendered orthographic scene?
We have a mostly 2D game that runs in orthographic mode, but one part shows a 3d model that is rendered in between the other 2D objects. How can I switch to perspective mode, render that model, then ...
3
votes
1answer
2k views
Using CreateOrthographicOffCenter in XNA
I'm trying to figure out how to draw graphics in XNA, and someone else suggested this.
But before I attempt to use this...
If I create and use this camera, and set LEFT,TOP to 0 and WIDTH=256 and ...
2
votes
1answer
279 views
Difference between glOrthof and glViewPort
On OpenGL-ES i'm confused on what the difference is between setting
glOrthof()
glViewPort()
GLU.gluOrtho2D()
with it's respective parameters. Since I believe it's all setting the part you can ...
2
votes
2answers
161 views
Orthographic to perspective adjustment calculation
I was wondering how I might adjust a perspective projection to make it look like it was orthographic. For example, say I had a 10x10 grid of points, each with different z values, which under an ...
2
votes
2answers
294 views
Enabling Anti-Aliasing in NVIDIA Control Panel causes line distortion in orthographic projection
On this OpenGL application that I'm developing on Windows 7 with Visual Studio, I tried to enable Anti-Aliasing on the NVIDIA Control Panel (only for the application .exe).
Enabling that causes a ...
2
votes
1answer
709 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 ...
2
votes
1answer
435 views
Simulating 3D 'cards' with just orthographic rendering
I am rendering textured quads from an orthographic perspective and would like to simulate 'depth' by modifying UVs and the vertex positions of the quads four points (top left, top right, bottom left, ...
1
vote
1answer
388 views
OpenGL ES 2.0: Why does this perspective projection matrix not give the right result?
About 2 days ago I decided to write code to explicitly calculate the Model-View-Projection ("MVP") matrix to understand how it worked. Since then I've had nothing but trouble, seemingly because of the ...
1
vote
1answer
63 views
Why doesn't alpha blending work in ortho?
This is how I turn on ortho projection after drawing 3D objects:
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0,Screen_Width,Screen_Height,0,0,1);
And this is how I turn on blending and ...
1
vote
3answers
399 views
OpenGL-ES Enabling orthographic mode 2D
I'm trying to have no size difference from sprites, if you increase the z to far away.
however i have no luck, it still gets smaller:
||EDIT||
I now have these methods
public void ...
1
vote
2answers
194 views
How do I set up the viewable area in a scene within OpenGL ES 2.0?
I have done programming in OpenGL and I know how to set the viewable area in it with gluOrtho(), but a function like this does not exist in OpenGL ES 2.0.
How would I do this in OpenGL ES 2.0?
P.S ...
1
vote
1answer
621 views
Unable to Draw 3D (Frustum) on top of 2D (Ortho) in OpenGL
I'm trying to render some meshes with Frustum projection on top of a background image (orthographic projection). No matter what I do, the background image keeps being on top of the scene (hiding the ...
1
vote
2answers
719 views
Setting a orthographic projection matrix?
I am having trouble setting a orthographical projection matrix of dimensions 4x2 with (0,0) being in the center, (-2, -1) being at the bottom left corner, and (2, 1) being at the top right corner.
I ...
1
vote
1answer
292 views
Orthographic projections in Google Earth (/Sky) possible? Alternatives?
I need to create whole-sky maps, but Google Earth in Sky mode has limited "zoom out." Is it possible to create an orthographic map projection with Google Earth (or, for that matter, MS Virtual Earth)? ...
1
vote
2answers
587 views
Playing Card “3D” rotation in OpenGL - perspective?
(Mac OS X, Cocoa, C/C++, OpenGL, somewhat mathematically challenged.)
Project is a real-time (30fps) poker game, with a 2D view. The OpenGL view is set up for Orthographic projection using glOrtho; ...
1
vote
1answer
560 views
Using GLOrtho to view Side, Front, Top perspectives of a 3D scene
I'm building a game level editing app as part of a university project. In my application I have multiple viewports, a Perspective viewport and three orthographic views all setup to view the same ...
1
vote
3answers
501 views
WPF Orthographic Camera. Region of view
I added Orthographic Camera to my project. I want to show my chart on screen proportional. For example height is 4 and width 4 (region from -2 to 2).
I set width to 4 and it perfectly fit my square ...
1
vote
2answers
167 views
How do I go about implementing sprite masking?
Using DirectX I'm rendering textured polygons (orthographically) so they act as HUD sprites. Now I'm not sure how would I go about implementing sprite masking in this sytem?
So basically say I have a ...
1
vote
2answers
1k views
flash 10 orthographic projection
I've been playing a bit with the new flash 10 3d possibilities, and found out that rotating a sprite in 3d is fairly easy:
var card:Sprite = new MyCard()
card.x = 100
card.y = 100
card.z = 200
...
0
votes
2answers
53 views
How to use OpenGL orthographic projection with the depth buffer?
I've rendered a 3D scene using glFrustum() perspective mode. I then have a 2D object that I place over the 3D scene to act as a label for a particular 3D object. I have calculated the 2D position of ...
0
votes
0answers
48 views
Drawing transparent texture with glOrthof fails on device
i'm developing an android game with OpenGL ES. The actual desired platform is 1.6 and higher.
I've got a problem with blended textures in orthographic mode. When i run the app to debug, the virtual ...
0
votes
3answers
127 views
Orthographic Projection in Modern OpenGL
I'd like to set up an orthographic projection using only modern OpenGL techniques (i.e. no immediate-mode stuff). I'm seeing conflicting info on the web about how to approach this.
Some people are ...
0
votes
0answers
30 views
Why do my ScreenSpaceLines3D disappear when I change from a PerspectiveCamera to an OrthographicCamera?
I want to use the ScreenSpaceLines3D in my WPF graphics application, but when I try to use an orthographic camera instead of a perspective camera, they all disappear. Why?
0
votes
1answer
64 views
What's the correct way to set up a landscape orthographic projection using OpenGL-ES 2.0 on iOS?
This is all in OpenGL ES 2.0...
I'm trying to mix a 3D perspective projection with a 2D orthographic projection so I can have a HUD sat on top of the 3D scene in my game.
The game runs with a ...
0
votes
0answers
80 views
How to get perspective image from the Orthographic/Parallel projective image. Conversion from Orthographic to perspective
For example, an image is projected onto a plane by using the Orthographic/Parallel projection (glOrtho) , then captured (screen shoot) at some angle using OpenGL camera.
So, it means that I have a ...
0
votes
2answers
188 views
OpenGL Orthographic Projection Clipping
Assuming I use Orhographic Projection, and have a reshape function like this:
void reshape(f32 width, f32 height){
aspect = width/height;
glViewport(0, 0, width, height);
// guaranted ...
0
votes
1answer
54 views
Good ways to measure screen for use with Orthographic clipping planes
Hey I'm converting my project so that it uses orthographic projection because I've been told its simpler and ideal for 2D games. I don't know really know how I'm meant to measure the screen ...
0
votes
2answers
498 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
1answer
471 views
2d hud layer in android and opengl es
I'm trying to make an android game with opengl
I managed to set up the glOrthof view alongside the regular 3D perspective. However I'm having trouble coming up with a way to draw to the gui. I'm ...
0
votes
1answer
597 views
3D Coordinates to 2D Screen Coordinates with an Orthographic Matrix
I have a scene that stores vertices in 3D space. What i would like to do is render those vertices Orthographically from an isometric perspective.
In all of my searching the obvious answer is to use ...