Skip to content

Commit c993f30

Browse files
committed
adsf
1 parent f2784de commit c993f30

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/vec2.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,13 @@ impl Vec2 {
4040
(*self - other).len()
4141
}
4242

43-
<<<<<<< HEAD
4443
fn th(&self) -> AngDeg {
4544
AngDeg{degree:(self.normalize().y).atan2(self.normalize().x) * RAD2DEG}
4645
}
4746

4847
fn is_valid(&self) -> bool {
4948
(self.x - INVALID_).abs() > std::f64::EPSILON &&
5049
(self.y - INVALID_).abs() > std::f64::EPSILON
51-
=======
52-
fn th(self) -> AngDeg {
53-
AngDeg{degree:(self.normalize().y).atan2(self.normalize().x )* 180.0 / 3.1415}
54-
>>>>>>> origin/kickV2
5550
}
5651

5752
fn rotate(&mut self, deg: f64) -> Vec2 {

0 commit comments

Comments
 (0)