home *** CD-ROM | disk | FTP | other *** search
- /* Repaint with chalk: fine */
-
- address "ArtEffect"
-
- options results
-
- airbrush power 100 roughness 100 density 0 def 10 update
- setmodes pantograph airbrush
- paintmode copy
- settings dotspacing 3
- setbrush circle xs 13
-
- activatewindow current
- sourceId=result;
- getinfo STEM info.
- new info.picwidth info.picheight info.name
- destId=result
-
- settings sw sourceId sx 0 sy 0 dw destId dx 0 dy 0 lighttableon
-
- do y=0 to info.picheight by 16
- do x=-16 to info.picwidth by 4
- line x y+16 x+random(16,20) y
- end
- do x=-16 to info.picwidth+16 by 4
- line x y+16 x-random(16,20) y
- end
- end
-