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

20 lines
538 B
CoffeeScript

# 0000000 000 0000000 00000000
# 000 000 000 000
# 0000000 000 000 0000000
# 000 000 000 000
# 0000000 000 0000000 00000000
class Size
constructor: (@w, @h) ->
@x = @w
@y = @h
div: (d) -> new Size parseInt(@w/d), parseInt(@h/d)
mul: (d) -> new Size parseInt(@w*d), parseInt(@h*d)
minus: (s) -> new Size @w-s.w,@h-s.h
plus: (s) -> new Size @w+s.w,@h+s.h
eql: (s) -> @w == s.w and @h == s.h
module.exports = Size