[clutter] [ANNOUNCE] pyclutter-ng: Ctypes-based 0.8 bindings

2008-07-21 Thread Damien Boucard - UbiCast
Hi ! Following Emmanuele's starting the bindings from scratch thread (Thu, 17 Jul 2008 14:18), I decided to write a proof of concept for python bindings in ctypes. These bindings aim at being compliant to existing official pyclutter API. Ctypes is a useful Python module which allows pythoners

Re: [clutter] [ANNOUNCE] pyclutter-ng: Ctypes-based 0.8 bindings

2008-07-21 Thread Damien Boucard - UbiCast
Le Mon, 21 Jul 2008 12:58:17 +0100, Alberto Ruiz [EMAIL PROTECTED] a écrit : 2008/7/21 Damien Boucard - UbiCast [EMAIL PROTECTED]: Hi ! Following Emmanuele's starting the bindings from scratch thread (Thu, 17 Jul 2008 14:18), I decided to write a proof of concept for python bindings

Re: [clutter] It is possible to mirror actor horizontally or vertically?

2008-08-13 Thread Damien Boucard - UbiCast
Le Wed, 13 Aug 2008 15:56:04 +0400, Roman Yazmin [EMAIL PROTECTED] a écrit : It is possible to mirror actor(texture) horizontally or vertically without creating extension? Easy ! You just have to rotate your actor at 180° on X or Y axis. Damien. -- To unsubscribe send a mail to [EMAIL

Re: [clutter] Gradient

2008-08-25 Thread Damien Boucard - UbiCast
Le Mon, 25 Aug 2008 16:30:27 +0200, Arnaud VALLAT [EMAIL PROTECTED] a écrit : Hello, I would like to make a gradient but not only on a quad ... I would like to be able to assign a color to each point of a polygon for example. I didn't find something to do it with neither clutter nor cogl.

Re: [clutter] Re: [cairo] SimSUI - a Simple SVG User Interface

2008-09-10 Thread Damien Boucard - UbiCast
Hi, That's great to see that SVG is more and more popular ! I've heard about another projet in the same kind : http://www.wxsvg.org/ It uses the wxWidget API, so that project will not be powered by Clutter, but a wind of SVG is blowing in the land of graphical user interfaces ! Thanks and

Re: [clutter] Threads with pyclutter

2009-03-06 Thread Damien Boucard - UbiCast
Le Fri, 6 Mar 2009 16:36:57 +0100, Lionel Dricot zepl...@gmail.com a écrit : I'm really not friend with Python threads (I find Gobject threads easier to use) but, indeed, I think that callbacks and timeout will save me a lot of headache ! then gobject.idle_add is your friend ! ;) Damien. --

Re: [clutter] Threads with pyclutter

2009-03-06 Thread Damien Boucard - UbiCast
Le Fri, 6 Mar 2009 17:01:17 +0100, Lionel Dricot zepl...@gmail.com a écrit : The sources of the bindings shows threads_add_idle_full but it also seems to be in a ignore list and clutter.threads_add_idle_full doesn't work. Damien What do you use in candies ? I don't actually use add_idle

Re: [clutter] 3D meshes in Clutter

2010-02-11 Thread Damien Boucard - UbiCast
donn donn.in...@gmail.com writes: Would clutter-ply become a stand-alone package, from a python pov? Something like: import clutterply? Better would be: import clutter3D from clutter3D import PLYloader So we could add other means to get 3D data in over time. Neil Roberts