kiki/coffee/lib/position.coffee
monsterkodi f2721706c8 math
2016-08-08 23:16:40 +02:00

16 lines
606 B
CoffeeScript

# 00000000 0000000 0000000 000 000000000 000 0000000 000 000
# 000 000 000 000 000 000 000 000 000 000 0000 000
# 00000000 000 000 0000000 000 000 000 000 000 000 0 000
# 000 000 000 000 000 000 000 000 000 000 0000
# 000 0000000 0000000 000 000 000 0000000 000 000
class Position
constructor: (@x=0, @y=0) ->
plus: (s) -> new Position @w+s.w,@h+s.h
minus: (s) -> new Position @w-s.w,@h-s.h
eql: (s) -> @x == s.x and @y == s.y
module.exports = Position