Class: Geometry::PointSlopeLine

Inherits:
Line
  • Object
show all
Defined in:
lib/geometry/line.rb

Instance Method Summary collapse

Methods inherited from Line

[], horizontal, new, vertical

Methods included from ClusterFactory

included

Constructor Details

#initialize(point, slope) ⇒ PointSlopeLine

Returns a new instance of PointSlopeLine.



90
91
92
93
# File 'lib/geometry/line.rb', line 90

def initialize(point, slope)
    @point = Point[point]
    @slope = slope
end

Instance Method Details

#to_sObject



94
95
96
# File 'lib/geometry/line.rb', line 94

def to_s
    'Line(' + @slope.to_s + ',' + @point.to_s + ')'
end