16 lines
606 B
CoffeeScript
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
|