Removed debug lines

This commit is contained in:
Ben Cragg 2019-04-03 12:03:58 +01:00
parent faf6558294
commit e5ff236d71
1 changed files with 0 additions and 5 deletions

View File

@ -403,11 +403,6 @@ func (l Line) Rotated(around Vec, angle float64) Line {
// Move the line so we can use `Vec.Rotated`
lineShifted := l.Moved(around.Scaled(-1))
fmt.Println(around.Scaled(-1))
fmt.Println(lineShifted)
fmt.Println(lineShifted.A.Rotated(angle))
fmt.Println(lineShifted.B.Rotated(angle))
lineRotated := Line{
A: lineShifted.A.Rotated(angle),
B: lineShifted.B.Rotated(angle),