Sha256: c6517346c1ce40015c0403db086b7d417c7ce4c6ab632a77bda97866681df2f4
Contents?: true
Size: 845 Bytes
Versions: 3
Compression:
Stored size: 845 Bytes
Contents
# vine.rb by jashkenas, click mouse to re-run require 'cf3' def setup_the_vine @vine = ContextFree.define do shrink = 0.961 shape :root do split do shoot y: 1 rewind shoot rotation: 180 end end shape :shoot do square shoot y: 0.98, rotation: 5, size: shrink + rand * 0.05, brightness: 0.990 end shape :shoot, 0.02 do square split do shoot rotation: 90 rewind shoot rotation: -90 end end end end def setup size 700, 700 setup_the_vine no_stroke end def draw # Do nothing. end def draw_it background 270, 1.0, 0.15, 1.0 @vine.render :root, size: height/75, color: [270, 0.1, 0.9, 1.0], start_x: width/2, start_y: height/2 end def mouse_clicked draw_it end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cf3-0.0.5 | samples/vine.rb |
cf3-0.0.4 | samples/vine.rb |
cf3-0.0.3 | samples/vine.rb |