The lxp.py
module#
Summary#
Framework representing a singular ray path. |
|
Define an interface to read LPF files. |
Convert a given wavelength of light to an approximate RGB color value. |
Intersection types indicating an error state. |
|
Intersection types indicating a correct ray state. |
Description#
The lxp module contains classes and functions to simplify the interaction with ray data.
Ray data is provided as lpf file. LPF files contain a set of simulated rays with all their intersections and properties.
Module detail#
- lxp.wavelength_to_rgb(wavelength, gamma=0.8)#
Convert a given wavelength of light to an approximate RGB color value.
The wavelength must be given in nanometers in the range from 380 nm to 750 nm. Based on the code from http://www.physics.sfasu.edu/astro/color/spectra.html
- lxp.ERROR_IDS = [7, 8, 9, 10, 11, 12, 13, 14, 15]#
Intersection types indicating an error state.
- lxp.NO_ERROR_IDS#
Intersection types indicating a correct ray state.