[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Custom patterns
- To: info-mcl@ministry.cambridge.apple.com
- Subject: Re: Custom patterns
- From: poeck@informatik.uni-wuerzburg.de (Karsten Poeck)
- Date: 19 Dec 1993 13:26:33 GMT
- Followup-to: comp.lang.lisp.mcl
- Newsgroups: comp.lang.lisp.mcl
- Organization: University of Wuerzburg
- References: <Yh4qLCG00WB5A=J1BE@andrew.cmu.edu>
In article <Yh4qLCG00WB5A=J1BE@andrew.cmu.edu>, Andrew Newell Mickish
<am2q+@andrew.cmu.edu> wrote:
>
> I am a new user of MCL, and I'm converting graphics software that was
> originally written for X windows (using the CLX lisp functions) to run
> on the Mac.
>
....
Try
(defparameter *my-pattern*
(make-record :pattern
:b0 238
...
:b7 119))
and
(defun mac-draw-arc (&rest args)
(ccl:fill-arc *my-window* *my-pattern* 0 PI 10 10 80 80))
Karsten