Skip to content

Commit

Permalink
chore: removed unused utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Musat authored and gabotechs committed Dec 24, 2022
1 parent f5b9204 commit 85a218f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 38 deletions.
12 changes: 0 additions & 12 deletions internal/utils/clamp.go

This file was deleted.

14 changes: 0 additions & 14 deletions internal/utils/concat.go

This file was deleted.

5 changes: 0 additions & 5 deletions internal/utils/inlimits.go

This file was deleted.

7 changes: 0 additions & 7 deletions internal/utils/vector.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@ func Vec(x int, y int) Vector {
}
}

func (v *Vector) Plus(other Vector) Vector {
return Vector{
X: v.X + other.X,
Y: v.Y + other.Y,
}
}

func (v *Vector) Minus(other Vector) Vector {
return Vector{
X: v.X - other.X,
Expand Down

0 comments on commit 85a218f

Please sign in to comment.