Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/samples/simple-anim-shapes.rb
blob: be3927658ed100c1739723a174782870855cec34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Shoes.app do
  background rgb(0, 0, 0)
  fill rgb(255, 255, 255)
  rects = [
    rect(0, 0, 50, 50),
    rect(0, 0, 100, 100),
    rect(0, 0, 75, 75)
  ] 
  animate(24) do |i|
    rects.each do |r|
      r.move((0..400).rand, (0..400).rand)
    end
  end
  button "OK", :top => 0.5, :left => 0.5 do
    quit unless confirm "You ARE sure you're OK??"
  end
end