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 with a shader. My method is working on a per object per light source basis.

Here is how it looks: Demo video on youtube

It is programmed in python with libavg, which does not support per-pixel-lighting but additive blending with hardware acceleration.

It works like this: You take several renders (in my case 8) from a 3D object, where the object is lighted from different directions (in my case 0°, 45°, 90°, 135°...). Then where the object should be rendered, you put all those renders in an additive blending manner and set their intensities to 0. Then for every light source you calculate from which direction it would illuminate the object. Based on that you choose the two pictures of that object where the rendered light direction is closest to the real direction and based on how close each angle to the real angle is you split up the power of the light source on those two images.

Example: A light source L lights the object from an angle of 40°. The images you choose are then the ones for 0° and for 45°. The 45° image gets 40/45 of the light source power and the 0° image gets 5/45 of the light source power. You do that for each light source and add the powers up (for colored light do it seperately for each channel).

This method is useful for objects that are all the time seen from one perspective but lighted from different directions.

So now my question is: Has anybody ever done this before?

If yes, please show me where you used it.

If not, I claim the invention of this method.

My name is Constantin Berhard and I'm currently an undergraduate computer science student at the Saarland University.

Cheers.

link|improve this question
feedback

closed as not constructive by casperOne Feb 24 at 19:40

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.