class Array

Public Instance Methods

x() click to toggle source
# File lib/xyp/plot.rb, line 2
def x
  self[0]
end
x=(v) click to toggle source
# File lib/xyp/plot.rb, line 10
def x=(v)
  self[0]=v
end
y() click to toggle source
# File lib/xyp/plot.rb, line 6
def y
  self[1]
end
y=(v) click to toggle source
# File lib/xyp/plot.rb, line 14
def y=(v)
  self[1]=v
end