class Array

Attributes

interval[RW]

Public Instance Methods

animtype() click to toggle source
# File lib/wiper/squeegee.rb, line 53
def animtype
  :tween
end
to_dots() click to toggle source
# File lib/wiper/squeegee.rb, line 49
def to_dots
  self
end
transpose!() click to toggle source
# File lib/wiper/squeegee.rb, line 57
def transpose!
  a = self.transpose
  self.map! { |i| i = nil }.compact!
  a.map { |i| self.push i }
end