Sha256: 4b3deec344c34895687c2d8652adb79a8341da8f58365c0c45b912a13e6b5da9
Contents?: true
Size: 530 Bytes
Versions: 13
Compression:
Stored size: 530 Bytes
Contents
module Fox # # Size # class FXSize # Width [Integer] attr_accessor :w # Height [Integer] attr_accessor :h # # Return an uninitialized FXSize instance. # def initialize; end # # Return an initialized FXSize instance which is a copy # of the input size _s_ (an FXSize instance). # def initialize(s); end # # Return an initialized FXSize instance, where _ww_ and # _hh_ are the initial width and height. # def initialize(ww, hh); end end end
Version data entries
13 entries across 13 versions & 1 rubygems