Class: Hornetseye::Frame
- Extended by:
- FrameConstructor
- Defined in:
- docs/hornetseye-frame/lib/hornetseye-frame/frame.rb
Class Method Summary collapse
- .import(typecode, width, height, memory) ⇒ Object
- .new(typecode, width, height) ⇒ Object
- .storage_size(typecode, width, height) ⇒ Object
Methods included from FrameConstructor
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 |