Ruby Sketch __link__ May 2026

200.times do |i| x = rand(500) y = rand(500) r = rand(5..40) hue = (i * 3) % 360 svg.circle(cx: x, cy: y, r: r, fill: "hsl(#hue, 80%, 60%)", opacity: 0.7) end

require 'ruby2d' set width: 800, height: 600, title: "My Ruby Sketch", background: '#111' on :key_down do |e| clear if e.key == 'r' end ruby sketch

gem install ruby2d svg chunky_png Check: title: "My Ruby Sketch"