Class: Math::Stepwise::Point

Inherits:
Object
  • Object
show all
Defined in:
lib/mext/math/stepwise.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(x, y) ⇒ Point

Returns a new instance of Point.



8
9
10
11
# File 'lib/mext/math/stepwise.rb', line 8

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

Instance Attribute Details

#xObject (readonly)

Returns the value of attribute x.



6
7
8
# File 'lib/mext/math/stepwise.rb', line 6

def x
  @x
end

#yObject (readonly)

Returns the value of attribute y.



6
7
8
# File 'lib/mext/math/stepwise.rb', line 6

def y
  @y
end