0
votes
0answers
22 views
How can I turn a ray-plane intersection point into barycentric coordinates?
Hi,
My problem:
How can I take two 3D points and lock them to a single axis? For instance, so that both their z-axes are 0.
What I'm trying to do:
I have a set of 3D coordinate …
0
votes
1answer
37 views
How to cast rays given an arbitrary camera?
I'm writing a ray tracer (using left-handed coordinates, if that makes a difference). It's for the sake of teaching myself the principles, so I'm not using OpenGL or complex featur …
1
vote
1answer
103 views
Efficiency of perspective projection vs raytracing/ray casting
I have a very general question. I wish to determine the boundary points of a number of objects (comprising 30-50 closed polygons (z) each having around 300 points(x,y,z)). I am wor …
15
votes
9answers
857 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 …
7
votes
9answers
982 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 int …
2
votes
4answers
281 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 …
3
votes
6answers
515 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 processo …
2
votes
3answers
665 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 acc …
3
votes
4answers
343 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 the …
1
vote
5answers
322 views
Best thing for 3D and raytracing
I want to play around with some graphics stuff. Simple animations and things. I want to fool around with raytracing too. I need help finding a library that will help me do these th …
11
votes
13answers
810 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 m …
4
votes
4answers
741 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 …
2
votes
5answers
152 views
Anyone know of a really good book about Ray Tracing?
Hi there,
I need to do some research on ray tracing and create my own ray tracer. Can you guys name any good books on the subject?
Thanks!
2
votes
4answers
170 views
What is the best approach to compute efficiently the first intersection between a viewing ray and a set of objects ?
For instance:
An approach to compute efficiently the first intersection between a viewing ray and a set of three objects: one sphere, one cone and one cylinder (other 3D primitive …
4
votes
6answers
436 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 no …
