class SimpleMetric::DataPoint
Attributes
x[R]
y[R]
Public Class Methods
new(x, y)
click to toggle source
# File lib/simple_metric.rb, line 111 def initialize(x, y) @x, @y = x.to_f, y.to_f end