class FlameChannelParser::FramecurveWriters::Base::KeyWriter

Attributes

keys[R]

Public Class Methods

new() click to toggle source
# File lib/framecurve_writers/base.rb, line 5
def initialize
  @keys = []
end

Public Instance Methods

key(at, value) click to toggle source
# File lib/framecurve_writers/base.rb, line 9
def key(at, value)
  @keys.push([at.to_i,value.to_f])
end