lib: add constants for BLACK and WHITE colors.
This commit is contained in:
parent
72c6944ab9
commit
b3737dcd5f
@ -10,3 +10,6 @@ pub mod world;
|
||||
|
||||
/// Value considered close enough for PartialEq implementations.
|
||||
pub const EPSILON: f32 = 0.00001;
|
||||
|
||||
const BLACK: tuples::Color = tuples::Color::new(0., 0., 0.);
|
||||
const WHITE: tuples::Color = tuples::Color::new(1., 1., 1.);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user