Sha256: 21ae0ff579955610c24c4f3fa68009ef896c1c86b5e14e6e781cbe54398161e6

Contents?: true

Size: 370 Bytes

Versions: 2

Compression:

Stored size: 370 Bytes

Contents

Shoes.app do
  background black

  stack top: 0.4, left: 0.2 do
    @stripes = stack

    mask do
      title "Shoes", weight: "bold", size: 82
    end
  end

  animate 10 do
    @stripes.clear do
      20.times do |i|
        strokewidth 4
        stroke rgb(rand(0.0..0.5), rand(0.0..1.0), rand(0.0..0.3))
        line 0, i * 5, 400, i * 8
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shoes-4.0.0.pre2 samples/simple-mask.rb
shoes-4.0.0.pre1 samples/simple-mask.rb