Work on back projection, f32 -> f64

This commit is contained in:
2018-07-23 10:12:37 +02:00
parent 674b49430f
commit 6807773b38
11 changed files with 89 additions and 109 deletions
+2 -2
View File
@@ -11,10 +11,10 @@ pub struct Material {
pub name: String,
/// The diffuse color of the material.
pub diffuse: Vector3<f32>,
pub diffuse: Vector3<f64>,
/// Map linking each texture map to its file path.
pub textures: HashMap<String, (String, Vector3<f32>)>,
pub textures: HashMap<String, (String, Vector3<f64>)>,
/// Instructions that are unknown.
///