Sha256: 476ac054c15d75c6bea2b165bf056b88a68493c4605278bf7eb363d6ed7374c0
Contents?: true
Size: 848 Bytes
Versions: 4
Compression:
Stored size: 848 Bytes
Contents
require 'rubysketch/all' module RubySketch w = (ENV['WIDTH'] || 500).to_i h = (ENV['HEIGHT'] || 500).to_i WINDOW__ = Processing::Window.new(w, h) {start} CONTEXT__ = RubySketch::Context.new WINDOW__ refine Object do (CONTEXT__.methods - Object.instance_methods) .reject {_1 =~ /__$/} # methods for internal use .each do |method| define_method(method) do |*args, **kwargs, &block| CONTEXT__.__send__(method, *args, **kwargs, &block) end end end end# RubySketch begin w, c = RubySketch::WINDOW__, RubySketch::CONTEXT__ c.class.constants.reject {_1 =~ /__$/}.each do |const| self.class.const_set const, c.class.const_get(const) end w.__send__ :begin_draw at_exit do w.__send__ :end_draw Processing::App.new {w.show}.start if c.hasUserBlocks__ && !$! end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rubysketch-0.7.4 | lib/rubysketch.rb |
rubysketch-0.7.3 | lib/rubysketch.rb |
rubysketch-0.7.2 | lib/rubysketch.rb |
rubysketch-0.7.1 | lib/rubysketch.rb |