Sha256: 356e593fc9e510c8515002b1296cd935bc28f35af0fe21a30d1071f977cd9789
Contents?: true
Size: 518 Bytes
Versions: 1
Compression:
Stored size: 518 Bytes
Contents
module Fox class FXMemoryBuffer # Pixel buffer, an array of FXColor values [Array] attr_reader :data # # Return a new FXMemoryBuffer instance, initialized with the # provided array of FXColor values. # # ==== Parameters: # # +data+:: the initial array of FXColor values. # def initialize(data, size); end # Return the specified element (an FXColor value) def [](index); end # Set the specified element to _clr_. def []=(index, clr); end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fxruby-1.2.3 | rdoc-sources/FXMemoryBuffer.rb |