LightRampAttrib
-
class LightRampAttrib
Bases:
RenderAttribA Light Ramp is any unary operator that takes a rendered pixel as input, and adjusts the brightness of that pixel. For example, gamma correction is a kind of light ramp. So is HDR tone mapping. So is cartoon shading. See the constructors for an explanation of each kind of ramp.
Inheritance diagram
-
enum LightRampMode
-
enumerator LRT_default = 0
-
enumerator LRT_identity = 1
-
enumerator LRT_single_threshold = 2
-
enumerator LRT_double_threshold = 3
-
enumerator LRT_hdr0 = 4
-
enumerator LRT_hdr1 = 5
-
enumerator LRT_hdr2 = 6
-
enumerator LRT_default = 0
- static LightRampAttrib.get_class_slot()
- static LightRampAttrib.get_class_type()
- LightRampAttrib.get_level()
Returns the nth lighting level.
- LightRampAttrib.get_mode()
Returns the
LightRampAttribmode.
- LightRampAttrib.get_threshold()
Returns the nth threshold level.
- static LightRampAttrib.make_default()
Constructs a new
LightRampAttribobject. This is the standard OpenGL lighting ramp, which clamps the final light total to the 0-1 range.
- static LightRampAttrib.make_double_threshold()
Constructs a new
LightRampAttribobject. This causes the luminance of the diffuse lighting contribution to be quantized using two thresholds:if (original_luminance > threshold1) { luminance = level1; } else if (original_luminance > threshold0) { luminance = level0; } else { luminance = 0.0; }
- static LightRampAttrib.make_hdr0()
Constructs a new
LightRampAttribobject. This causes an HDR tone mapping operation to be applied.Normally, brightness values greater than 1 cannot be distinguished from each other, causing very brightly lit objects to wash out white and all detail to be erased. HDR tone mapping remaps brightness values in the range 0-infinity into the range (0,1), making it possible to distinguish detail in scenes whose brightness exceeds 1.
However, the monitor has finite contrast. Normally, all of that contrast is used to represent brightnesses in the range 0-1. The HDR0 tone mapping operator ‘steals’ one quarter of that contrast to represent brightnesses in the range 1-infinity.
FINAL_RGB = (RGB^3 + RGB^2 + RGB) / (RGB^3 + RGB^2 + RGB + 1)
- static LightRampAttrib.make_hdr1()
Constructs a new
LightRampAttribobject. This causes an HDR tone mapping operation to be applied.Normally, brightness values greater than 1 cannot be distinguished from each other, causing very brightly lit objects to wash out white and all detail to be erased. HDR tone mapping remaps brightness values in the range 0-infinity into the range (0,1), making it possible to distinguish detail in scenes whose brightness exceeds 1.
However, the monitor has finite contrast. Normally, all of that contrast is used to represent brightnesses in the range 0-1. The HDR1 tone mapping operator ‘steals’ one third of that contrast to represent brightnesses in the range 1-infinity.
FINAL_RGB = (RGB^2 + RGB) / (RGB^2 + RGB + 1)
- static LightRampAttrib.make_hdr2()
Constructs a new
LightRampAttribobject. This causes an HDR tone mapping operation to be applied.Normally, brightness values greater than 1 cannot be distinguished from each other, causing very brightly lit objects to wash out white and all detail to be erased. HDR tone mapping remaps brightness values in the range 0-infinity into the range (0,1), making it possible to distinguish detail in scenes whose brightness exceeds 1.
However, the monitor has finite contrast. Normally, all of that contrast is used to represent brightnesses in the range 0-1. The HDR2 tone mapping operator ‘steals’ one half of that contrast to represent brightnesses in the range 1-infinity.
FINAL_RGB = (RGB) / (RGB + 1)
- static LightRampAttrib.make_identity()
Constructs a new
LightRampAttribobject. This differs from the usual OpenGL lighting model in that it does not clamp the final lighting total to (0,1).
- static LightRampAttrib.make_single_threshold()
Constructs a new
LightRampAttribobject. This causes the luminance of the diffuse lighting contribution to be quantized using a single threshold:if (original_luminance > threshold0) { luminance = level0; } else { luminance = 0.0; }
-
enum LightRampMode
