Troubleshoot toroid2.5d

This commit is contained in:
2020-10-09 20:41:38 -07:00
parent b9a48641c1
commit f2ba6fdd1b
8 changed files with 123 additions and 98 deletions

View File

@@ -199,7 +199,7 @@ impl From<(Real, Real, Real)> for Vec3 {
impl From<Vec3u> for Vec3 {
fn from(v: Vec3u) -> Self {
Self::new(v.x().into(), v.y().into(), v.z().into())
Self::new(v.x() as _, v.y() as _, v.z() as _)
}
}