Sha256: a1218d102e7af021dffe61a350572f893a64486e6c9764b2f2a951537cc92092

Contents?: true

Size: 536 Bytes

Versions: 6

Compression:

Stored size: 536 Bytes

Contents

#
# a translation from a processing example
# http://vormplus.be/weging/an-introduction-to-processing/
#
Shoes.app :width => 420, :height => 420, :resizable => false do
  rotation = -(Shoes::HALF_PI / 3)
  step = 20 

  background gray(240)
  stroke gray(127)
  cap :curve
  nofill

  10.times do |i|
    strokewidth i
    size = 200 + (step * i)
    shape do
      arc self.width / 2, self.height / 2,
          size, size,
          rotation * i, rotation * i + Shoes::TWO_PI - Shoes::HALF_PI
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
shoesgem-0.1480.0 shoes/samples/simple-arc.rb
shoesgem-0.1469.0 shoes/samples/simple-arc.rb
shoesgem-0.1430.0 shoes/samples/simple-arc.rb
shoesgem-0.1429.0 shoes/samples/simple-arc.rb
shoesgem-0.1428.0 shoes/samples/simple-arc.rb
shoesgem-0.1426.0 shoes/samples/simple-arc.rb