/* --------------------------------------------------------------------------- */ /* MATERIALS */ #include "materials.h" material_td redPlasticMaterial = { {0.4, 0.0, 0.0, 1.0}, {0.6, 0.0, 0.0, 1.0}, {0.0, 0.0, 0.0, 1.0}, {32.0} }; material_td greenPlasticMaterial = { {0.0, 0.2, 0.0, 1.0}, {0.0, 0.3, 0.0, 1.0}, {0.0, 0.0, 0.0, 1.0}, {32.0} }; material_td bluePlasticMaterial = { {0.0, 0.0, 0.3, 1.0}, {0.0, 0.0, 0.6, 1.0}, {0.0, 0.0, 0.0, 1.0}, {32.0} }; material_td blueishPlasticMaterial = { {0.1, 0.1, 0.2, 1.0}, {0.0, 0.0, 0.3, 1.0}, {0.0, 0.0, 0.0, 1.0}, {32.0} }; material_td yellowPlasticMaterial = { {0.5, 0.5, 0.0, 1.0}, {0.6, 0.6, 0.0, 1.0}, {0.0, 0.0, 0.0, 1.0}, {32.0} }; material_td whiteShinyMaterial = { {0.3, 0.3, 0.3, 1.0}, {0.4, 0.4, 0.4, 1.0}, {0.0, 0.0, 0.0, 1.0}, {100.0} };