home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
CLIPPER
/
MISC
/
BIPL.ZIP
/
IDOL.ZIP
/
POINT.IOL
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-12-30
|
281 b
|
15 lines
class Cartesian : Radian (x,y)
initially
if /(self.r) then {
self.r := sqrt(self.x^2+self.y^2)
self.d := 0 # this should really be some awful mess
}
end
class Radian : Cartesian(d,r)
initially
if /(self.x) then {
self.x := 0
self.y := 0
}
end