class Fox::Enhancement::Xtras::Charting::Range
range in real coordinates, beginning and end points
Attributes
x1[RW]
x2[RW]
y1[RW]
y2[RW]
Public Class Methods
new(x1, y1, x2, y2)
click to toggle source
# File lib/fxruby-enhancement/xtras/charting.rb, line 14 def initialize x1, y1, x2, y2 @x1 = x1 @y1 = y1 @x2 = x2 @y2 = y2 end