File: matrix.rb

package info (click to toggle)
ruby-rghost 0.9.9-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,188 kB
  • sloc: ruby: 3,374; makefile: 6; sh: 1
file content (6 lines) | stat: -rw-r--r-- 197 bytes parent folder | download
1
2
3
4
5
6
# Implements data method for Grid::Base. You can consult the examples at Grid::Base.
class RGhost::Grid::Matrix < RGhost::Grid::Base
  def data(_data)
    _data.each { |d| proc_line(d) }
  end
end