The raycasting tag has no wiki summary.
8
votes
2answers
397 views
MySQL implementation of ray-casting Algorithm?
We need to figure out a quick and fairly accurate method for point-in-polygon for lat/long values and polygons over google maps. After some research - came across some posts about mysql geometric ...
5
votes
2answers
134 views
Difference between Doom and Quake 3D rendering
I have been studying (old) 3D rendering techniques for the past weeks and think that I now have a fair understanding of the way 3D rendering in Doom works.
It uses raycasting to render the 3D scene, ...
5
votes
5answers
560 views
Voxels… Honestly, I need to know where to begin
Okay, i understand that voxels are just basically a volumetric version of a pixel.
After that, I have no idea what to even look for.
Googling doesn't show any tutorials, I can't find a book on it ...
5
votes
1answer
890 views
Octree raycasting/raytracing - best ray/leaf intersection without recursion
Could anyone provide a short & sweet explanation (or suggest a good tutorial) on how to cast a ray against a voxel octree without recursion?
I have a complex model baked into an octree, and I ...
3
votes
1answer
207 views
Convert path to polygon
I'm trying to figure if a point is in a SVG path using Python.
The algorithm that I'll use is the raycasting algorithm.
But for this algorithm i need to have the polygon sides, but all I have is the ...
3
votes
1answer
151 views
Is there a raycasting library in C++ that is simple and open source?
I'm looking for a library that will let me cast a ray into a scene model (it happens to be a terrain model in our case) and return the point of intersection in the scene. It does not have to be ...
2
votes
1answer
70 views
Is stochastic raytracing inherently cache-unfriendly?
Specifically in the context of a real-time raytracer where view updates are frequent?
The obvious answer would seem to be "yes" and yet I wonder if any methods have been found to accelerate Monte ...
2
votes
1answer
45 views
How is ray coherence used to improve raytracing speed while still looking realistic?
I'm considering exploiting ray coherence in my software per-pixel realtime raycaster.
AFAICT, using a uniform grid, if I assign ray coherence to patches of say 4x4 pixels (where at present I have one ...
2
votes
3answers
239 views
OpenGL water refraction
I'm trying to create an OpenGL application with water waves and refraftion. I need to either cast rays from the sun and then the camera and figure out where they intersect, or I need to start from ...
1
vote
1answer
71 views
What happends when you convert floating point numbers to fixed point numbers in java (java me specifically)
I want my java me program to run as efficiently as possible. my goal is to make a ray cast and want to know the best way to traverse voxels. I have heard that conversion and comparison of floating ...
1
vote
2answers
360 views
CPU Ray Casting
I'm attempting ray casting an octree on the CPU (I know the GPU is better, but I'm unable to get that working at this time, I believe my octree texture is created incorrectly).
I understand what ...
1
vote
2answers
330 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
2answers
270 views
Calculating intersection point of two tangents on one circle?
I tried using a raycasting-style function to do it but can't get any maintainable results. I'm trying to calculate the intersection between two tangents on one circle. This picture should help ...
1
vote
0answers
102 views
Ray casting with CSG tree
i've got a question, i'm doing a project that i have to do ray casting and use csg trees, but i dont know how to use the csg trees or implement it on this project.
I can do the ray cast and give the ...
0
votes
0answers
21 views
Bad access in b2Fixture::RayCast when called from a background thread
I have an ai class that uses a pathfinder class to find a path to the player. To do this, it needs to check whether or not there is a wall at specific locations or whether there are any walls within a ...
0
votes
2answers
41 views
Parse a text file representing a map into a quad tree structure
I have to create a pseudo wolfenstein 3D as an assignement in school, and I need a structure to represent the map. As all the calculations will be based on a two-dimensionnal grid, I thought that a ...
0
votes
0answers
136 views
Raycasting vs OpenGL-ES 2.0 - is there a noticeable difference for Doom like game on Android?
It's my first question, I searched on google as always, round two was searching directly on SO, but still I couldn't get the exact answer.
I'm going to write 3D graphics engine for games I want to ...
0
votes
1answer
720 views
Point in Polygon (Google Maps API v3)
I have a google maps api v3, which uses "The Di Lab"'s plugin for polygon drawing:
http://www.the-di-lab.com/?p=219
And then uses tparkins plugin for raycasting.
...
0
votes
1answer
292 views
Using RayCasting for a 2D game
In one of my earlier questions I asked about onTouchEvents in OpenGL. The idea was to create a simple app that drew a square where you pressed the screen. After a while I came out with an app that ...
0
votes
1answer
694 views
Raycasting Voxels and OpenGL
I'm currently looking into raycasting and voxels, which is a nice combination. A Voxelrenderer by Sebastian Scholz implements this pretty nicely, but also uses OpenGL. I'm wondering how his formula is ...
0
votes
1answer
208 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 ...
-1
votes
0answers
10 views
How can I get Normal Vector of Sphere?
I have to implement simple ray tracing algorithm, but I can not figure out How can I get Normal Vector of the sphere If I have the origin and radius of the sphere and the direction of the ray.
thanks
...