Re: I solved the polygon problem.

2006-04-04 Thread Han-Wen Nienhuys
David Feuer wrote: On 4/4/06, Han-Wen Nienhuys <[EMAIL PROTECTED]> wrote: David Feuer wrote: music-drawing-routines.ps to indicate level 2. I really don't have the time to set myself up to compile the LilyPond sources. Could you setting yourself is actually very easy nowadays, at least if yo

Re: I solved the polygon problem.

2006-04-04 Thread Han-Wen Nienhuys
David Feuer wrote: On 4/4/06, Han-Wen Nienhuys <[EMAIL PROTECTED]> wrote: David Feuer wrote: music-drawing-routines.ps to indicate level 2. I really don't have the time to set myself up to compile the LilyPond sources. Could you setting yourself is actually very easy nowadays, at least if yo

Re: I solved the polygon problem.

2006-04-04 Thread David Feuer
On 4/4/06, Han-Wen Nienhuys <[EMAIL PROTECTED]> wrote: > David Feuer wrote: > > music-drawing-routines.ps to indicate level 2. I really don't have > > the time to set myself up to compile the LilyPond sources. Could you > > setting yourself is actually very easy nowadays, at least if you're > run

Re: I solved the polygon problem.

2006-04-04 Thread Han-Wen Nienhuys
David Feuer wrote: music-drawing-routines.ps to indicate level 2. I really don't have the time to set myself up to compile the LilyPond sources. Could you setting yourself is actually very easy nowadays, at least if you're running linux or macos X. Just go to http://lilypond.org/~hanwen

Re: I solved the polygon problem.

2006-04-04 Thread David Feuer
On 4/4/06, Han-Wen Nienhuys <[EMAIL PROTECTED]> wrote: > we don't do level 1 anyway. I think that glyphshow is L2. You're right! So I can remove the level 1 emulation code I put in for selectfont. And we should change the PostScript comment at the top of music-drawing-routines.ps to indicate l

Re: I solved the polygon problem.

2006-04-04 Thread Han-Wen Nienhuys
David Feuer wrote: Use the postscript "arct" command. Drawing a filled polygon becomes x0 x1 add 2 div y0 y1 add 2 div moveto x1 y1 x2 y2 r arct x2 y2 x3 y3 r arct x3 y3 x4 y4 r arct ... x(n-1) y(n-1) x0 y0 r arct x0 y0 x1 y1 r arct closepath fill where n is the number of points and r is the r

Re: I solved the polygon problem.

2006-04-04 Thread David Feuer
While I'm at it, the Scheme and Postscript polygon drawers are only ever called with the filled parameter true, so please get rid of that parameter. David Feuer ___ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinf

I solved the polygon problem.

2006-04-04 Thread David Feuer
Use the postscript "arct" command. Drawing a filled polygon becomes x0 x1 add 2 div y0 y1 add 2 div moveto x1 y1 x2 y2 r arct x2 y2 x3 y3 r arct x3 y3 x4 y4 r arct ... x(n-1) y(n-1) x0 y0 r arct x0 y0 x1 y1 r arct closepath fill where n is the number of points and r is the radius of the arc. ar