home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1994 June
/
NEBULA_SE.ISO
/
SourceCode
/
Tutorial
/
Cookbook
/
28.Motion
/
drawObjects.psw
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-01-19
|
272 b
|
19 lines
defineps doBall(float x,y,width)
x y width 0.0 360.0 arc fill
endps
defineps drawPaddle(float angle, width)
gsave
40 40 translate
angle neg rotate
newpath
-45 0 moveto
90 0 rlineto
0 width neg rlineto
-90 0 rlineto
closepath
fill
grestore
endps