Class: Hornetseye::Frame

Inherits:
Object show all
Extended by:
FrameConstructor
Defined in:
docs/hornetseye-frame/lib/hornetseye-frame/frame.rb

Class Method Summary collapse

Methods included from FrameConstructor

method_missing

Class Method Details

.import(typecode, width, height, memory) ⇒ Object



165
166
167
# File 'docs/hornetseye-frame/lib/hornetseye-frame/frame.rb', line 165

def import(typecode, width, height, memory)
  Hornetseye::Frame(typecode).new width, height, :memory => memory
end

.new(typecode, width, height) ⇒ Object



161
162
163
# File 'docs/hornetseye-frame/lib/hornetseye-frame/frame.rb', line 161

def new(typecode, width, height)
  Hornetseye::Frame(typecode).new width, height
end

.storage_size(typecode, width, height) ⇒ Object



169
170
171
# File 'docs/hornetseye-frame/lib/hornetseye-frame/frame.rb', line 169

def storage_size(typecode, width, height)
  Hornetseye::Frame(typecode).storage_size width, height
end