Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
163 views

How to best store lines in a kd-tree

I know kd-trees are traditionally used to store points, but I want to store lines instead. Would it be best to split the line at every intersection with the splitting of the kd-tree? or would storing ...
4
votes
1answer
196 views

Theoretical computer graphics - Ray casting algorithm

I was studying for a Computer Graphics exam using previous iterations and I came across this question Comment the following: "The ray-casting algorithm is fine for calculating projected ...
2
votes
2answers
461 views

Raycasting/Raytracing: shooting rays from camera

I am writing a simple raytracer/raycaster in c#. I have expirence in the past with Vectors, so I wrote a class called Vector3D, as you can see in the code below. I also wrote a class to handle the ...
2
votes
1answer
47 views

Ever-expanding beam of light in background

I have a webpage, the background for which is going to be a flashlight. Is it possible to draw the flashlight so that the beam (a piece-of-pie shape) will expand, no matter the size of the user's ...
2
votes
2answers
583 views

Ray voxel intersection

I want to test for an intersection of a ray with a voxel field. I could naively crawl through the voxel field by calculating a ray-box intersection with the edge of the current voxel, then doing the ...
1
vote
2answers
316 views

Basic (Fake) Raycasting on a 2D Heightmap

Basically what I'm trying to do is shade a 2D heightmap using a very very basic raycasting system that basically just checks if the ray is intercepted before it should be to shade it. However it's not ...
1
vote
1answer
432 views

Ray intersection, Ray anything acctually, OpenGL-ES?

Is this possible to do with OpenGL-ES? Im trying to make a quite simple 3D game in android with the use of OpenGL-ES. Now im stuck on the part where i think that using a ray to get the coordinates ...
1
vote
1answer
182 views

library for beam tracing (beam intersection) on a 3D Polygon model

I want to simulate a laser scanner which emits laser beam onto a 3D model to measure distance or other features from the model. The 3D model consists of vertices in xyz coordinate and faces; each ...
1
vote
2answers
153 views

Negating the truthiness of a boolean evaluation causing 5x slowdown?

I'm trying to implement an octree, and for that, I need a fast AABB-ray intersection algorithm. After some searching, I came across this paper that seemed to offer that. From the source code, ...
0
votes
2answers
44 views

Ray tracing box intersections

So I'm back with another ray tracing question. My code renders spheres all fine and dandy, but cubes aren't really working. I'm using this code to test for intersections: http://pastebin.com/qgm6vpdx ...
0
votes
0answers
67 views

Ray tracing vectors

So I decided to write a ray tracer the other day, but I got stuck because I forgot all my vector math. I've got a point behind the screen (the eye/camera, 400,300,-1000) and then a point on the screen ...
0
votes
2answers
94 views

RayCasting in Box2D?

i am creating a project in which i have random Box2d bodies. Now i am drawing a line on basis of TouchesMoved by user in the DRAW method. i need to use the RayCasting method of Box2d to check for ...
0
votes
3answers
69 views

Ray-Sphere intersection: the discriminant is WRONG

Alright, so I'm working on a ray tracer using phong shading. So far, everything is good. I've cast rays that have hit the spheres in my scene, applied phong shading to them, and it looks normal. Now, ...
0
votes
1answer
75 views

Ray picking - get direction from pitch and yaw

I am attempting to cast a ray from the center of the screen and check for collisions with objects. When rendering, I use these calls to set up the camera: GL11.glRotated(mPitch, 1, 0, 0); ...
0
votes
1answer
28 views

ray tracing lighting

I am trying to implement specular and diffuse lighting for a simple sphere ray tracing application, but I am having problems with my vectors. I am trying to use the following to update the light, but ...
0
votes
3answers
306 views

Algorithm for determining whether a point is inside a 3D mesh

What is a fast algorithm for determining whether or not a point is inside a 3D mesh? For simplicity you can assume the mesh is all triangles and has no holes. What I know so far is that one popular ...
0
votes
0answers
121 views

Traverse kd tree, ray intersection

I have chosen a stack based traversal algorithm (Recursive Ray Traversal Algorithm) and I am having a little trouble understanding it. Here is what I understand: I need to find a point where the ray ...
0
votes
1answer
65 views

how do i calculate the Touch on openGL using glUnProject

Hi i found upto near plan and far plan.. then how to identify using this i touched on the object.. could anyone pls help me.. Here is My code.. -(Boolean) checkCollission:(CGPoint)winPos { ...
0
votes
1answer
182 views

Shape raycasting: Best way to determine last position which does NOT intersect something?

I'm using Box2D (jBox2D specifically) and I'm trying to do a tetris-like block collision (i.e. stopping just before they overlap each other so they seamlessly interlock) What is the simplest method ...
0
votes
1answer
339 views

Ray picking in first person

Hi :) I have been searching for weeks and can't find a solution. Can sum1 please tell me how to implement ray picking when using a first person camera. Where exactly in the formula are you suppossed ...
0
votes
3answers
546 views

Ray transformation for ray-triangle intersection

In openGL, I have a 3D model I'm performing a ray-triangle intersection on, using the code explained in the paper "Fast, Minimum Storage Ray/Triangle Intersection" ( ...
0
votes
1answer
106 views

What is a ray intersection interval?

In the context of ray/box intersection, what exactly is "a valid intersection interval"? I've been searching through different tutorials, but it seems they mostly seem to expect this as a priori ...