Tagged Questions

0
votes
2answers
34 views

How do I fixate a light source in OpenGL while rotating an object?

I have a glutSolidTeapot (which has its surface normals generated automatically according to opengl.org) and a light source which is emitting diffuse light. The problem comes when …
2
votes
3answers
109 views

Recommended 3D Programming Aspects for Light/Laser Show Simulator?

Hey guys, I would like to develop a light/laser show editor and simulator, and for this of course I am going to learn some graphics programming. I am thinking about using C# and XN …
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 …
0
votes
2answers
383 views

OpenGL GLSL interpolation

Hi I try to implement point lights in OpenGL with GLSL. I send all the required data to the shaders. For simplicity I only use the diffuse light here. My example shows a huge tri …
0
votes
1answer
96 views

Lighting issue in OpenGL

Hello, I have trouble developing an OpenGL application. The weird thing is that me and a friend of mine are developing a 3d scene with OpenGL under Linux, and there is some code o …
3
votes
14answers
544 views

What kind of light environment do you prefer to work in?

What type of light do you prefer to be working in? How do you have your light source(s) situated? Wattage? Any particular lamp recommendations? Is there any sort of lighting en …
0
votes
3answers
404 views

Techniques to smooth face edges in OpenGL

When I light my human model in OpenGL using face normals it is very apparent where each face is on the model. The lighting becomes considerably smoother using vertex normals but st …
2
votes
2answers
288 views

How do I make the lights stay fixed in the world with Direct3D

I've been using OpenGL for years, but after trying to use D3D for the first time, I wasted a significant amount of time trying figure out how to make my scene lights stay fixed in …