fix clippy issue

This commit is contained in:
Emil Ernerfeldt 2020-10-08 22:24:55 +02:00
parent 9f6301e121
commit c6fd30ea13

View file

@ -42,11 +42,11 @@ impl Pos2 {
}
}
pub fn distance(self: Self, other: Self) -> f32 {
pub fn distance(self, other: Self) -> f32 {
(self - other).length()
}
pub fn distance_sq(self: Self, other: Self) -> f32 {
pub fn distance_sq(self, other: Self) -> f32 {
(self - other).length_sq()
}