Sha256: b6af40383abf773ca89bd159cd4041944d3b043c276db74bb00173569be4c901
Contents?: true
Size: 342 Bytes
Versions: 4
Compression:
Stored size: 342 Bytes
Contents
require 'ruby-processing' class CallingAFunction < Processing::App def setup smooth draw_black_circle end def draw background 255 draw_black_circle end def draw_black_circle fill 0 ellipse 50, 50, 20, 20 end end CallingAFunction.new :title => "Calling A Function", :width => 100, :height => 100
Version data entries
4 entries across 4 versions & 1 rubygems