Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

piste3d ja varipiste lisätty ja toimii #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions piste3d.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
require './piste.rb'

class Piste3d < Piste

def initialize x, y, z
@x = x
@y = y
@z = z
end

def siirra(dx, dy, dz)
@x += dx
@y += dy
@z += dz
end

def etaisyys_origosta
Math.sqrt(@x*@x + @y*@y +@z*@z)
end

def to_s
"(#{@x}, #{@y}, #{@z})"
end
end
14 changes: 14 additions & 0 deletions varipiste.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require './piste.rb'

class Varipiste < Piste

def initialize(x, y, vari)
@x = x
@y = y
@vari = vari
end

def to_s
"(#{@x}, #{@y}) #{@vari}"
end
end