Tagged Questions
Ray tracing is a method for producing photorealistic 3D graphics by simulating the physics of photons moving through the scene. For each pixel to be displayed, a ray is cast from the eye through that pixel, and its interactions within the scene are used to determine the ultimate color of that pixel.
23
votes
9answers
2k views
Calculating which tiles are lit in a tile-based game (“raytracing”)
I'm writing a little tile-based game, for which I'd like to support light sources. But my algorithm-fu is too weak, hence I come to you for help.
The situation is like this: There is a tile-based map ...
21
votes
13answers
3k views
When are structs the answer?
I'm doing a raytracer hobby project, and originally I was using structs for my Vector and Ray objects, and I thought a raytracer was the perfect situation to use them: you create millions of them, ...
18
votes
9answers
4k views
Literature and tutorials for writing a ray tracer
I am interested in finding recommendations on books on writing a raytracer, simple and clear implementations of ray tracing that can be seen on the web, and online resources on introductory ray ...
13
votes
3answers
478 views
How to roll a fast BVH representation in Haskell
I'm playing with a Haskell Raytracer and currently use a BVH implementation which stresses a naive binary tree to store the hierarchy,
data TreeBvh
= Node Dimension TreeBvh TreeBvh AABB
| Leaf ...
12
votes
5answers
3k views
Ray-box Intersection Theory
I wish to determine the intersection point between a ray and a box. The box is defined by its min 3D coordinate and max 3D coordinate and the ray is defined by its origin and the direction to which it ...
9
votes
8answers
2k views
Improving raytracer performance
I'm writing a comparatively straightforward raytracer/path tracer in D (http://dsource.org/projects/stacy), but even with full optimization it still needs several thousand processor cycles per ray. Is ...
9
votes
4answers
5k views
raytracing with CUDA
I'm currently implementing a raytracer. Since raytracing is extremely computation heavy and since I am going to be looking into CUDA programming anyway, I was wondering if anyone has any experience ...
8
votes
5answers
360 views
Wanting to write a raytracer, stuck on what algebra library to use (C++)
I've been wanting to write my own multithreaded realtime raytracer in C++, but I don't want to implement all the vector and matrix logic that comes with it. I figured I'd do some research to find a ...
8
votes
3answers
450 views
Elegant/Clean (special case) Straight-line Grid Traversal Algorithm?
I'm dusting off an old project of mine. One of the things it had to do was -- given a Cartesian grid system, and two squares on the grid, find a list of all squares that a line joining the center of ...
6
votes
1answer
113 views
shuffling and NRooks constraint preservation
I am implementing a raytracer, and I am in the middle of implementing samplers. A sampler is a generator of random points over a square x=0:1, y=0:1. Each sampler holds multiple sets of "random" ...
6
votes
2answers
151 views
Computing shading through a transparent surface
In ray tracing, I want to calculate the shading for a point where my ray hit. I "draw" lines to all light sources and check if they are blocked by objects or not. If they are not blocked then I ...
6
votes
2answers
146 views
What types of geometry definition file format is best used with ray tracing to include the type of material
I wanted to use .obj format, but I noticed that it doesn't have representation for the type of material, i.e. opaque, transparent, reflective. Is there a common file format that includes that ...
6
votes
2answers
433 views
Computer graphics research
What are the best known labs for research in CG especially raytracing/rendering? I want to pursue Masters/PhD in this field and though I have been working on projects such as raytracers, it is all ...
6
votes
2answers
555 views
Raytracing (LoS) on 3D hex-like tile maps
Greetings,
I'm working on a game project that uses a 3D variant of hexagonal tile maps. Tiles are actually cubes, not hexes, but are laid out just like hexes (because a square can be turned to a cube ...
6
votes
4answers
1k views
Are there any rendering alternatives to rasterisation or ray tracing?
Rasterisation (triangles) and ray tracing are the only methods I've ever come across to render a 3D scene. Are there any others? Also, I'd love to know of any other really "out there" ways of doing ...
5
votes
1answer
344 views
Raytracer - Computing Eye Rays
I'm writing a ray tracer (mostly for fun) and whilst I've written one in the past, and spent a decent amount of time searching, no tutorials seem to shed light on the way to calculate the eye rays in ...
5
votes
1answer
162 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 ...
5
votes
3answers
754 views
3D coordinate of 2D point given camera and view plane
I wish to generate rays from the camera through the viewing plane. In order to do this, I need my camera position ("eye"), the up, right, and towards vectors (where towards is the vector from the ...
5
votes
2answers
771 views
OpenGL render vs. own Phong Illumination Implementation
I have implemented a Phong Illumination Scheme using a camera that's centered at (0,0,0) and looking directly at the sphere primitive. The following are the relevant contents of the scene file that is ...
5
votes
2answers
895 views
How to set up quadratic equation for a ray/sphere intersection?
I'm researching the math for a ray tracer, but I'm not following a transition that is made in just about every article I've read on the subject. This is what I have:
Formula for a sphere:
(X - Cx)^2 ...
5
votes
6answers
1k views
Textured spheres without strong distortion
I've seen well-textured balls, planets, and other spherical objects in couple of games, last time in UFO: aftermath. If you just splatter a texture into latitude/longditude as u and w -coordinates ...
4
votes
1answer
180 views
A few questions about ray tracing with opengl
I need to do a limited form of ray tracing. I do not need reflections. I only need to change the color of a pixel, depending on how it passes by an object, and refraction. I also only need to test for ...
4
votes
2answers
276 views
How to deal with refraction when the rays start inside of a nested object
I am building a simple raytracer for educational purposes and want to add refraction to objects. Using Snells Law, I am able to create a new ray recursively at the intersection points. The raytracer ...
4
votes
2answers
880 views
Can someone describe the algorithm used by Ken Silverman's Voxlap engine?
From what I gathered he used sparse voxel octrees and raycasting. It doesn't seem like he used opengl or direct3d and when I look at the game Voxelstein it appears that miniature cubes are actually ...
4
votes
2answers
1k views
KD-Tree traversal (raytracing) - am I missing a case?
I'm trying to traverse a 3D KD-Tree in my raytracer. The Tree is correct, but there seems to be something wrong with my traversal algorithm since I'm getting some errors compared to using a ...
4
votes
4answers
2k views
Ray-Polygon Intersection Point on the surface of a sphere
I have a point (Lat/Lon) and a heading in degrees (true north) for which this point is traveling along. I have numerous stationary polygons (Points defined in Lat/Lon) which may or may not be convex.
...
4
votes
4answers
553 views
Is there a really good book about ray tracing?
I need to do some research on ray tracing and create my own ray tracer. Are there any good books on the subject?
4
votes
3answers
3k views
How do you calculate the Angle of Incidence?
I'm working on a raytracer for a large side project, with the goal being to produce realistic renders without worrying about CPU time. Basically pre-rendering, so I'm going for accuracy over speed.
...
4
votes
6answers
1k views
Computer Graphics: Raytracing and Programming 3D Renders
I've noticed that a number of top universities are offering courses where students are taught subjects relating to Computer Graphics for their CS majors. Sadly this is something not offered by my ...
3
votes
1answer
89 views
What is the purpose in this part of the Monte Carlo path tracing algorithm?
In all of the simple algorithms for path tracing using lots of monte carlo samples the tracing the path part of the algorithm randomly chooses between returning with the emitted value for the current ...
3
votes
2answers
187 views
Something with raytracing that has gone wrong
I'm trying to do a simple ray tracing assignment, in c# (ported from python).
I've managed to make the sample code show the correct picture, but when I try and adapt it to my assignment something goes ...
3
votes
1answer
201 views
Odd Ray Tracing Artifact - wrong colored pixels
So I'm trying to rewrite my ray tracer in C# and I've been getting these odd artifacts.
At first I might have thought that they were the black-spot artifacts that are due to not adding Epsilon to the ...
3
votes
4answers
157 views
RayTracing: When to Normalize a vector?
I am rewriting my ray tracer and just trying to better understand certain aspects of it.
I seem to have down pat the issue regarding normals and how you should multiply them by the inverse of the ...
3
votes
1answer
140 views
determinate miplevel with fwidth
What exactly does the GLSL function fwidth(p) do?
I know that it is implemented as:
fwidth(p) = abs(dfdx(p)) + abs(dfdy(p))
but i am not sure if i got it yet.
I am doing some basic raycasting ...
3
votes
2answers
328 views
3D Affine transformation problem in raytracing
All,
I am writing a rather non conventional ray tracer to calculate heat transfer properties of various objects in a scene. In this ray tracer random rays are shot from the surface of my primitive ...
3
votes
2answers
193 views
Help me solve this bug with my ray tracer
I'm not going to post any code for this question because it would require way too much context, but I shall explain conceptually what I'm doing.
I'm building a simple ray tracer that uses affine ...
3
votes
3answers
502 views
Mapping from 2D projection back to 3D point cloud
I have a 3D model consisting of point vertices (XYZ) and eventually triangular faces.
Using OpenGL or camera-view-matrix-projection I can project the 3D model to a 2D plane, i.e. a view window or an ...
3
votes
1answer
350 views
Python Raytracing
I'm building a simple Python raytracer with pure Python (just for the heck of it), but I've hit a roadblock.
The setup of my scene is currently this:
Camera located at 0, -10, 0 pointing along the ...
3
votes
2answers
327 views
difference between parametric and algebraic equation of sphere intersection with line
I'm writing a Raytracer in C, and to draw a sphere I'm using the Cartesian equation:
x^2 + y^2 + z^2 = R^2.
I have my eye position (x_eye, y_eye, z_eye) and my eye vector (Vx, Vy, Vz).
The ...
3
votes
2answers
311 views
When writing openCL code, how does it perform on a single-core machine without a GPU?
Hey all,
I Am currently porting a raytracer from FORTRAN 77 to C for a research project.
After having ported the essentials, the question is how we proceed to parallelization.
In the lab, I have ...
3
votes
3answers
214 views
Is there a 3D scene format specific or well-suited for raytracing?
I'm working on a raytracer and I don't want reinvent the wheel when it comes to file formats for 3D scenes. I also want to be able to test my program with scenes made by others. I'm a programmer not a ...
3
votes
3answers
211 views
The right model for shading in Ray tracing
I am wondering about the most accurate way to calculate the shadow generated from several different light sources and ambient light.
Ambient light is light that exists in the entire 'world' with the ...
3
votes
3answers
729 views
Simple ray tracing tutorial?
Years ago at uni I wrote a ray tracer in C++, but now I can hardly remember any of it. Just for fun, I decided to try writing a ray tracer again, this time in C#. But sadly I'm struggling getting ...
3
votes
2answers
2k views
Ray tracing in modern OpenGL. Where do I begin?
So I'm at a point that I should begin lighting my flatly colored models. The test application is a test case for the implementation of only latest methods so I realized that ideally it should be ...
3
votes
4answers
222 views
Why do my raytraced spheres have dark lines when lit with multiple light sources?
I have a simple raytracer that only works back up to the first intersection. The scene looks OK with two different light sources, but when both lights are in the scene, there are dark shadows where ...
3
votes
1answer
316 views
What can cause Phong specular shading to produce gamut overflows?
I am currently implementing a basic raytracer in c++. Works pretty well so far, matte materials (with ambient and diffuse brdf) work as expected so far.
Adding specular highlights would result in the ...
3
votes
5answers
465 views
Ask for resource about fast ray-tracing algorithm
First, I am sorry for this rough question, but I don't want to introduce too much details, so I just ask for related resource like articles, libraries or tips.
My program need to do intensive ...
3
votes
5answers
577 views
Raytraced Shadows Problem
Hey There!
I've got a problem with shadowrays in my raytracer.
Please have a look at the following two pictures
3D sMax:
My Raytracer:
The scene is lit by a very bright light, shining from the ...
3
votes
4answers
1k views
How would you implement a perfect line-of-sight algorithm?
Disclaimer: I'm not actually trying to make one I'm just curious as to how it could be done.
When I say "Most Accurate" I include the basics
wall
distance
light levels
and the more complicated
...
3
votes
5answers
515 views
What's wrong with my soft-shadow code?
I'm trying to write a simple raytracer as a hobby project and it's all working fine now, except I can't get soft-shadows to work at all. My idea of soft-shadows is that the lightsource is considered ...