Reformat.
[mandelwow.git] / support / vec3.rs
index 85d3cc34a79c98e0274befc0681884edbcae0463..10820fb36a5d8a3fa7235cea68c11a171f3ef24b 100644 (file)
@@ -7,7 +7,7 @@ use std::ops::Sub;
 use std::ops::Mul;
 
 #[derive(Default, PartialEq, Debug, Clone, Copy)]
-pub struct Vec3 (pub f32, pub f32, pub f32);
+pub struct Vec3(pub f32, pub f32, pub f32);
 
 impl Add for Vec3 {
     type Output = Vec3;