Added assets

This commit is contained in:
Thomas Forgione
2018-02-23 17:35:39 +01:00
parent 180ac6b7cb
commit 037b38c704
7 changed files with 52 additions and 2 deletions
+7
View File
@@ -245,6 +245,13 @@ impl Vector3<f64> {
}
}
type Vector2f32 = Vector2<f32>; implement_vertex!(Vector2f32, data);
type Vector2f64 = Vector2<f64>; implement_vertex!(Vector2f64, data);
type Vector3f32 = Vector3<f32>; implement_vertex!(Vector3f32, data);
type Vector3f64 = Vector3<f64>; implement_vertex!(Vector3f64, data);
type Vector4f32 = Vector4<f32>; implement_vertex!(Vector4f32, data);
type Vector4f64 = Vector4<f64>; implement_vertex!(Vector4f64, data);
#[cfg(test)]
mod test {