Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
1k views

Finding a minimum bounding sphere for a frustum

I have a frustum (truncated pyramid) and I need to compute a bounding sphere for this frustum that's as small as possible. I can choose the centre to be right in the centre of the frustum and the ...
3
votes
3answers
59 views

Is the geometry outside of OpenGL ES Frustum also rendered?

I am developing a game for iPhone using OpenGL ES as drawing api. I am drawing a whole big world in a single draw element. The object is visible according to the frustum. I want to know what happens ...
3
votes
2answers
946 views

opengl frustum culling without glGet* calls

Various examples of view frustum calculations are using glGetFloatv() to get the current projection and modelview matrices (GL_PROJECTION_MATRIX, GL_MODELVIEW_MATRIX), and based of that do some view ...
2
votes
2answers
91 views

Need some help implementing VBOs with Frustum Culling

i'm currently developing my first 3D game for a school project, the game world is completely inspired by minecraft (world completely made out of cubes). I'm currently seeking to improve the ...
2
votes
1answer
58 views

OpenGL : Line jittering with large scene and small values

I'm currently drawing a 3D solar system and I'm trying to draw the path of the orbits of the planets. The calculated data is correct in 3D space but when I go towards Pluto, the orbit line shakes all ...
2
votes
1answer
243 views

Problems with Bounding Box Frustum Culling

I am having trouble getting correct frustum culling to work. I got a great suggestion from someone about AABB point testing and it works great but I have gotten to the point where a max and a min ...
2
votes
4answers
333 views

Confused about Frustum Culling

I'm new to OpenGL. I'm using it with JOGL. I'm reading about frustum culling: http://www.lighthouse3d.com/opengl/viewfrustum/ http://www.crownandcutlass.com/features/technicaldetails/frustum.html ...
2
votes
1answer
447 views

width of a frustum at a given distance from the near plane

I'm using CML to manage the 3D math in an OpenGL-based interface project I'm making for work. I need to know the width of the viewing frustum at a given distance from the eye point, which is kept as a ...
2
votes
2answers
623 views

Determining intersection with frustum in GLScene

using GLScene in delphi I need to find the intersection between an object (a line or plane is enough) and the visible space, to determine what part of this object is currently showing. I tried ...
2
votes
3answers
1k views

Optimize Frustum Culling

i am writing a game in C++ and have a level consisting of many seperate meshes, each with their own vertex buffer. i am using vmmlib ( brilliant free gl compat. vector/matrix library ) to create my ...
1
vote
2answers
168 views

How to check if an object lies outside the clipping volume in OpenGL?

I'm new to openGL, and I'm really confused about modelview transformation. I understand all the transformation processes, but when it comes to projection matrix, I'm lost :(. My question is, if I have ...
1
vote
2answers
135 views

View frustum visualization

Given a 3D position of a camera, 3D target position of the camera (the point the camera points to), far plane distance from the camera, field of view and aspect ratio, how can I calculate the four 3D ...
1
vote
2answers
478 views

Checking for bounding box intersections/collisions with a view frustum

I want to check a view frustum against the axis aligned bounding boxes of some objects, to check roughly whether those objects are in the field of view or not. Speed is not a big deal. Any help would ...
1
vote
1answer
620 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
1answer
356 views

setting up frustum in iphone

I have set up a frustum with fov=50, near=0.1,far=1000,aspect ratio=3/2 yet it isn`t coming nice--my object appears to be compressed on far side.suggest something that might help.
1
vote
1answer
462 views

Frustum culling rectangles problem

I am trying to implement frustum culling in my OpenGL 2d game. The only kind of geometric objects in my game at this point are rectangles, so I thought this would be pretty easy, but I am getting ...
1
vote
2answers
117 views

OpenGL-ES change angle of vision in frustum

Let's see if I can explain myself. When you set up the glFrustum view it will give the perspective effect. Near things near & big... far things far & small. Everything looks like it shrinks ...
0
votes
0answers
34 views

How know which particles of a particlesystem are in the frustum

I'm using Three.js and webGLrender to display a hockey stadium with its seats (80k particles) and i want to be able to do picking on each seat. I've tried to create a hidden object to use ray ...
0
votes
2answers
38 views

Suggest a simple Java math library for matrix operations for use with OpenGL (lwjgl)

I'm writing an OpenGL app with Java. I need to do some math for camera and frustum culling (for AABB). Could you suggest a simple and fast Java math library for that?
0
votes
1answer
92 views

Android opengl problem with skewed frustum in the left/right directions

I am writing a simple gyro test app in which I want to be able different sides of a polygon by tilting the phone to different orientation. It is similar to the head-tracked rendering technique but I ...
0
votes
2answers
235 views

Disable culling on an object

This question is actually for Unity3D, but it can also be a more general question, so therefore I'm going to make this question as general possible. Suppose I have a scene with a camera (near = 0.3, ...
0
votes
1answer
602 views

Bounding box frustum rendering - Distance rendering - OpenGL

I am rendering an old game format where I have a list of meshes that make up the are you are in. I have finally gotten the PVS (regions visible from another region) working and that cuts out a lot of ...
0
votes
2answers
139 views

z-value of a projected 3d point

After a 3d point has been transformed by a perspective projection matrix, what do the Z coordinate stand for? Distance from the 'eye'? Distance from the near clip plane? None of this? Edit I've set ...
0
votes
1answer
238 views

How to set the viewing volume in OpenGL ES for an iPhone AR app?

I'd like to add an OpenGL ES view as an overlay to my camera view. From this question and its anser I came to know the two field angles of the iPhone 4 rear camera. How can I properly set the volume ...
0
votes
1answer
76 views

What values to use in my 3D-space

This is not really a functional problem I'm having but more a strategic question. I am new to 3D-programming and when looking at tutorials and examples I recon that the coordinates are usually between ...
0
votes
2answers
511 views

How do you use glFrustrum in OpenGL ES1 on iPhone

So I am using Xcode 3.2.1 and am trying to make an iPhone OpenGL ES1 project. The default template for an opengl project is ok, but I have been trying to split the code up so not everything is done ...
0
votes
3answers
346 views

Determining visible area from globe frustum

I'm working with a mapping application (worldwind) and trying to determine the minimum and maximum latitudes and longitudes that are currently displayed. I have access to the frustum, but I'm not sure ...