oreolek
/
particles
Archived
1
0
Fork 0
This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
particles/fountain.rb

11 lines
158 B
Ruby

class Fountain
def initialize (x = 0, y = 0)
@x = x
@y = y
end
def distance (x, y)
return Math.sqrt((@x-x)**2 + (@y-y)**2).floor
end
end