root / trunk / samples / draw.rb
| Revision 120, 216 bytes (checked in by why, 11 months ago) |
|---|
| Line | |
|---|---|
| 1 | Shoes.app do |
| 2 | background "#999" |
| 3 | stroke "#000" |
| 4 | x, y = nil, nil |
| 5 | motion do |_x, _y| |
| 6 | if x and y and (x != _x or y != _y) |
| 7 | append do |
| 8 | line x, y, _x, _y |
| 9 | end |
| 10 | end |
| 11 | x, y = _x, _y |
| 12 | end |
| 13 | end |
Note: See TracBrowser
for help on using the browser.
