Tagged Questions
2
votes
3answers
824 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 XNA.
I was just ...
1
vote
1answer
472 views
Strange results w/ Blinn-Phong GLSL shader, point lights
I've made a GLSL shader for doing per-pixel blinn phong lighting on a scene, and I've had some issues w/ the light cast on the scene. Each light seems to have a very hard boundary on its effect ( in ...
1
vote
3answers
160 views
OpenGL lighting small objects?
Hey. I'm having a problem with lighting when dealing with really small particles. I'm doing particle-based fluid simulation and am right now rendering the fluid as really tiny polygonized spheres (by ...
1
vote
2answers
520 views
GLSL shading problem: Why is my sphere in greyscale instead of red? (see code)
I'm working on a beginner level GLSL shader program. I'm following this tutorial. But my sphere always appear in greyscale and not colored red as I expected.
Vertex Shader:
varying vec3 normal, ...
1
vote
2answers
448 views
How to rotate an object and but leaving the lighting fixed? (OpenGL)
I have a cube which I want to rotate. I also have a light source GL_LIGHT0. I want to rotate the cube and leave the light source fixed in its location. But the light source is rotating together with ...
0
votes
0answers
20 views
2D per object lighting (Berhard Lighting?)
I have developed a method for 3D-looking lighting, that is calculated in 2D. I know that there are already approaches which use normal maps and height maps to do lighting on a per pixel basis in 2D ...
0
votes
0answers
31 views
Opengl: How do I specify a directional vector for lighting in opengl?
This doesn't make sense to me at all, but anyways, lets say we have this:
Glfloat dir[] = { 0.0, -1.0f, 0.0f, 0.0f };
glLightfv(GL_LIGHT0, GL_POSITION, dir);
Guess what? The light rays point UP, ...
0
votes
1answer
77 views
Flat shading in graphics pipeline
I have been asked to analyze Flat shading model for 3d lighting and to "discuss how it integrate in the graphics pipeline".
Since flat shading is applied once per face, I was thinking the right ...
0
votes
1answer
83 views
How to rotate my object with the light in opengl
In my code, I cannot set cordinate the lighting according to the object so I cannot with fixed my lighting on the object which moves. How can i move the light with the objects
I have an objet that ...
0
votes
3answers
148 views
Problems with OpenGL lighting
I'm having trouble being able to see objects I've created when I have enabled lighting in OpenGL. I have an object that is imported from 3D Max that the lighting works correctly on but the rest of my ...
0
votes
3answers
349 views
OpenGL lighting question?
Greetings all,
As seen in the image , I draw lots of contours using GL_LINE_STRIP.
But the contours look like a mess and I wondering how I can make this look good.(to see the depth..etc )
I must ...
-1
votes
1answer
32 views
How do I get blending to work with lighting and material?
Which alpha should I change? Diffuse, specular, or ambient?