The ray tag has no wiki summary.
0
votes
0answers
53 views
n-dimensional ray tracing C/C++ API
I am implementing a program and want to do visualization using ray tracing. I am working in C/C++. Is there anybody knows about a C/C++ API for n-dimensional ray tracing?
Or at-least 15-dimensional ...
0
votes
0answers
33 views
Ray-Plane function is inaccurate
I'm making a 3D application in c++ with opengl, and want the planes to highlight as the mouse goes over them. The thing is, I already have this working, however the rayplane intersection is really ...
3
votes
0answers
119 views
OpenCL traversal kernel - further optimization
Currently, I have an OpenCL kernel for like traversal as below. I'd be glad if someone had some point on optimization of this quite large kernel.
The thing is, I'm running this code with SAH BVH and ...
0
votes
0answers
14 views
ray tracer objects stretch when off center
I am writing a ray tracer program for my computer graphics class. So far I only have spheres implemented and a shadow ray. The current problem is that when i move my sphere off center it stretches. ...
0
votes
1answer
127 views
two collada object colliding
I am trying to use Ray intersect to find out if 2 collada object collide.
But so far no success :(
my code http://jsfiddle.net/XqQzF/
object.updateMatrix();
// ray
var ...
-1
votes
1answer
232 views
Tutorial for Ray Picking (LWJGL / Java) [closed]
Does anyone now whats a good tutorial for 3D ray picking? I will pick a block in a 3d world. Thx
mh
0
votes
0answers
88 views
three.js : vector with firstpersoncontrols keyboard?
I want create a raycaster with firstpersoncontrols keyboard touchs. so I finally understood how raycaster walking, I don't know how to write the normalized vector with the keyboard. I go on the ...
0
votes
1answer
329 views
three.js - principle of camera collision
As I understood the only method to compute collisions with three.js is intersectObjects with a ray ...
I created an object that includes the basic elements of the collision : ground, walls, ...
1
vote
1answer
388 views
Calculating camera ray direction to 3d world pixel
I'm want to calculate ray directions from camera to pixel positions (in world coords) with given height as described in this paper. Camera image size is 640,480. I calibrated the intrinsic camera ...
0
votes
2answers
90 views
test if square overlaps poly in c++ w/ directx (optional)
how would I go about checking to see if a triangular poly is present within a square area? (I.E. picture a grid of squares overlaying a group of 2d polys.)
Or even better, how can I determine the ...
-1
votes
1answer
170 views
Ray intersection and child camera
I've been playing with three.js for few weeks now and got few inconsistencies on ray casting.
Here is a simplified version demonstrating one of the bug I encoutered :
http://jsfiddle.net/eMrhb/12/
...
1
vote
0answers
141 views
ray intersect not working in sphere
created the sphere and the plane geometry when i ignore the sphere form scene.add()
interesect work but
here is the code..
http://jsfiddle.net/praveenv29/PZeY4/
for ( var i = 0; i<10; i ++ )
...
0
votes
0answers
44 views
How to add event handler for the particals?
function create_map_point()
{
// map points
var runnerTexture = new THREE.ImageUtils.loadTexture('map_pin.png' );
mapi = new THREE.MeshBasicMaterial({map: runnerTexture,overdraw:true});
//mapi = new ...
2
votes
0answers
83 views
Trying to aim the particals to camera while rotating and alert message on intersecting in three js?
Trying to create event handler on the particals with alert message on sphere and also these should aim always on camera something similar to
http://www.google.com/culturalinstitute/worldwonders/ ( ...
0
votes
0answers
102 views
Shoot a ray and count pixels the ray hits
I have a 1 dimensional array that represents a picture.
Inside this picture I have to track pixels of an object.
I used to just count the pixels of each colum (in this case I look for the index of ...
1
vote
1answer
265 views
How to draw a line in 3D space across a grid with a start point and direction vector
I'm working on a first person 3D game. The levels are entirely cube based, walls/floors/etc are all just tiled cubes (1x1x1).
I'm currently creating a ray using the camera position and the rotation ...
0
votes
0answers
242 views
Project screen position onto plane in OpenGL
I'm currently struggling with a simple task: Given a mouse position on the screen, calculate the new position which is determined by calculating the intersection of the camera plane that goes through ...
1
vote
1answer
329 views
LWJGL - How to trace a ray effectively and efficiently?
I have got the origin and a direction vector but I have no clue how to follow the ray and check for collisions...
Here is a picture of the ray, it goes out about 6 blocks.
Vector3f cam = ...
1
vote
2answers
67 views
Deriving a ray from cursor co-ordinates using Ogre3D
I am creating a spaceship game in which you will be able to fire a laser from their ship. Basically I want to create a ray from the players ship to the cursor position. The player can move around but ...
2
votes
1answer
222 views
Error from O'Reilly WebGL book with Three.js
I have been using the sim.js code and its objects for a simple webGL project. When I needed to use the frustum class (Stack Overflow question on Three.js Frustums) I had to update my three.js to the ...
3
votes
2answers
1k views
Mouse / Canvas X, Y to Three.js World X, Y, Z
I've searched around for an example that matches my use case but cannot find one. I'm trying to convert screen mouse co-ordinates into 3D world co-ordinates taking into account the camera.
Solutions ...
2
votes
3answers
664 views
Ray intersection with 3D quads in XNA?
So I have successfully made a ray the represents the mouse unprojected into the world, and now I need to check if that ray can intersect with a quad object, here is the code I use to get the ray:
...
0
votes
1answer
121 views
Ray casting for collision
Hi im trying to implement ray casting into my 3d game for many uses
I have read lots of things about ray casting, i know that you need an origin,direction and length, i have these. What im having ...
1
vote
0answers
488 views
ray intersect object, picking object with mouse-pointer
Thank you for your consideration, as my problem is in title already I will get directly to the point:
UPDATE 2:
Problem solved. I did not transformed them into meshes, or so it seems. With the ...
0
votes
1answer
176 views
AS3: Farther-running ray hit test with 3D triangle
I have a 3D triangle defined by three Vector3D instances. And I have a ray that shoots from (x, y, 0) (depth value is always 0) and goes farther (the depth value becomes larger). How can I know:
...
0
votes
1answer
310 views
ray intersect planes with dynamic geometry returns empty array
Hey I'm building a webgl wall for my portfolio site, I need ray intersection to know both when user hovers over the wall and when they click what plane they're clicking on so I can redirect them to ...
0
votes
0answers
88 views
no intersection with TubeGeometry using Ray using Three.js
I am trying to get the 3D position of a click on my TubeGeometry using ray but it doesn't seem to work like expected.
Here is what I got:
clickPosVector.set((event.clientX / window.innerWidth) * ...
0
votes
0answers
134 views
Using THREE.Ray when having two scenes and two cameras
I have an html page with two scenes rendered by two renderes using two cameras.
When trying to click on an object in the first scene everything works fine
For that i am using:
sx = ev.clientX;
sy = ...
0
votes
0answers
157 views
Ray Sphere Intersection: handling corner cases
I'm struggling with implementing a robust ray sphere intersection routine in 2d. I hacked a rather hudge function together which I'm unable to properly debug since it runs on the GPU. I got my ...
2
votes
3answers
211 views
How to draw pixels for ray-tracing in C++?
I'm currently trying to learn ray-tracing in C++. I am getting help from two books: one is Ray Tracing from the Ground Up by Kevin Suffern, and the other one is Physically Based Rendering by Matt ...
1
vote
0answers
211 views
Ray Wenderlich's A* path finding tutorial
I am a huge fan of Ray Wenderlich's tutorials and if you haven't seen them check them out. I am developing a game using his A* pathfinding game. I love the way you interact however I do not know how ...
-2
votes
2answers
266 views
Speed of ray tracing compared to e.g. OpenGL (or other graphics implementation) [closed]
If OpenGL can achieve fast (relative) frame rates because part of the pipeline is processed by the GPU, how would it perform without a GPU, i.e. done purely in software? Would it be the same order ...
0
votes
1answer
177 views
Can't install gem ray
I've tried to install gem ray but I got a message (short)
ERROR: Error installing ray:
ERROR: Failed to build gem native extension.
The full version of message you can see here
My platform: ...
4
votes
2answers
379 views
Ray Tracing: Only use single ray instead of both reflection & refraction rays
I am currently trying to understand the ray tracer developed by Kevin Beason (smallpt: http://www.kevinbeason.com/smallpt/) and if I understand the code correctly he randomly chooses to either reflect ...
1
vote
1answer
173 views
ray on jruby, opengl
I'm using Ray (https://github.com/Mon-Ouie/ray) and I can't seem to get it to work with JRuby on Windows. The author said he tested it with JRuby and Rubinius so I gave it a try. It obviously didn't ...
0
votes
1answer
1k views
ray casting algorithm without side coordinates
Im trying to define if a point is inside a polygon. Only the coordinates of the corners are given. After some research I found the Ray casting algorithm but it looks like i need a vector filled with ...
3
votes
1answer
2k views
Object picking with ray casting
I've been having a problem with inaccuracies in my ray casting algorithm for detecting mouse hits within a box. I'm completely at a loss as to how to fix this properly and it's been bugging me for ...
0
votes
2answers
2k 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 ...
1
vote
3answers
654 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
1k 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
457 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
386 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);
...
1
vote
1answer
112 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 ...
2
votes
2answers
807 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 ...
2
votes
3answers
2k 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 ...
3
votes
0answers
313 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
264 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
400 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 ...
2
votes
2answers
1k 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
1k 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 ...
