Sha256: 97ae67e7367579590ad521d91301a66502d2ccfb50e0f90285124972d211ecbf

Contents?: true

Size: 1.1 KB

Versions: 17

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

c = circle({ id: :the_circle, left: 122, color: :orange, drag: { move: true, inertia: true, lock: :start } })
 c.color({ id: :col1, red: 1, blue: 1 })

 c.shadow({
              id: :s1,
              # affect: [:the_circle],
              left: 9, top: 3, blur: 9,
              invert: false,
              red: 0, green: 0, blue: 0, alpha: 1
            })

shadow({
           id: :s2,
           affect: [:the_circle],
           left: 3, top: 9, blur: 9,
           invert: true,
           red: 0, green: 0, blue: 0, alpha: 1
         })

c.shadow({
           id: :s4,
           left: 20, top: 0, blur: 9,
           option: :natural,
           red: 0, green: 1, blue: 0, alpha: 1
         })

wait 2 do
  c.remove(:s4)
  wait 2 do
    c.remove({ all: :shadow })
  end
end


the_text = text({ data: 'hello for al the people in front of their machine', center: true, top: 222, width: 777, component: { size: 66 } })



the_text.shadow({
           id: :s4,
           left: 20, top: 0, blur: 9,
           option: :natural,
           red: 0, green: 1, blue: 0, alpha: 1
         })

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
atome-0.5.6.4.5 vendor/assets/application/examples/shadow.rb
atome-0.5.6.4.2 vendor/assets/application/examples/shadow.rb
atome-0.5.6.4.1 vendor/assets/application/examples/shadow.rb
atome-0.5.6.4.0 vendor/assets/application/examples/shadow.rb
atome-0.5.6.3.9 vendor/assets/application/examples/shadow.rb
atome-0.5.6.3.6 vendor/assets/application/examples/shadow.rb
atome-0.5.6.3.5 vendor/assets/application/examples/shadow.rb
atome-0.5.6.3.1 vendor/assets/application/examples/shadow.rb
atome-0.5.6.3.0 vendor/assets/application/examples/shadow.rb
atome-0.5.6.2.9 vendor/assets/application/examples/shadow.rb
atome-0.5.6.2.7 vendor/assets/application/examples/shadow.rb
atome-0.5.6.2.5 vendor/assets/application/examples/shadow.rb
atome-0.5.6.2.4 vendor/assets/application/examples/shadow.rb
atome-0.5.6.2.3 vendor/assets/application/examples/shadow.rb
atome-0.5.6.2.1 vendor/assets/application/examples/shadow.rb
atome-0.5.6.2.0 vendor/assets/application/examples/shadow.rb
atome-0.5.6.1.9 vendor/assets/application/examples/shadow.rb