chore: clippy

This commit is contained in:
galister
2024-03-23 15:41:54 +01:00
parent a1d3b9684d
commit e70aaa002e
5 changed files with 5 additions and 5 deletions

View File

@@ -325,7 +325,7 @@ pub fn raycast_cylinder(
let x_angle = (hit_local.x / r).asin();
hit_local.x = x_angle / max_angle;
hit_local.y = hit_local.y / size;
hit_local.y /= size;
Some((t, hit_local.xy()))
}

View File

@@ -75,7 +75,7 @@ impl PlayspaceMover {
}
});
data.pose = data.pose * space_transform;
data.pose *= space_transform;
data.hand_pose = new_hand;
if self.universe == ETrackingUniverseOrigin::TrackingUniverseStanding {