On 11/18/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi, > I have not been using pyglet. I want to make a specified window pane > perimeter. A shape like a fish where it is not enclosed in a box that > is rectangular. In c# it can be done by accessing the GDI+ interface. > Is it possible in pure python? >
Possible, but not easy. pyglet uses GDI+ in one of its image modules, see pyglet/image/codecs/gdiplus.py. In the same way, you can make the necessary calls to GDI+ more or less directly. However, pyglet does not expose this functionality itself. Alex. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en -~----------~----~----~----~------~----~------~--~---
