Re: [clutter] clutter-box2d

2008-08-05 Thread Øyvind Kolås
On Tue, Aug 5, 2008 at 12:36 PM, Saul Lethbridge [EMAIL PROTECTED] wrote: This really is fantastic. I've built and had a look at the example - which seems great to play with. However it is very complicated (when compared with the examples provided with other clutter components. Can we get some

Re: [clutter] pyclutter state of trunk

2008-08-05 Thread dargwin
hi, I started playing around with pyclutter-0.8 and it's really awesome! Some things I'm missing (probably my fault): - access to cogl textures - clutter_stage_read_pixels - subclassing clutter.Container - cooking coffee ;) Anyway, I'm willing to contribute documentation. Can anybody give my

Re: [clutter] pyclutter state of trunk

2008-08-05 Thread Emmanuele Bassi
On Tue, 2008-08-05 at 16:36 +0200, [EMAIL PROTECTED] wrote: hi, I started playing around with pyclutter-0.8 and it's really awesome! Some things I'm missing (probably my fault): - access to cogl textures from clutter import cogl cogl.path_rectangle(x, y, width, height) or simply:

Re: [clutter] [PATCH] texture-from-pixmap with pyclutter

2008-08-05 Thread Jason Tackaberry
On Sun, 2008-08-03 at 15:38 -0400, Jason Tackaberry wrote: The attached patch adds ClutterX11TexturePixmap and ClutterGLXTexturePixmap support to pyclutter. Hi Emmanuele, At risk of sounding like I'm nagging, I wanted to make sure this patch didn't slip through the cracks and that you'd have a

[clutter] ANNOUNCE: rbclutter 0.8.0

2008-08-05 Thread Neil Roberts
The Ruby bindings for Clutter 0.8 are now available on RubyForge: http://rubyforge.org/projects/rbclutter/ This includes complete bindings for 0.8 including Cogl. Please try them out! If anyone can offer any help for making a Debian package so I don't have to read the friendly manual, I would

Re: [clutter] [PATCH] texture-from-pixmap with pyclutter

2008-08-05 Thread Emmanuele Bassi
On Tue, 2008-08-05 at 10:58 -0400, Jason Tackaberry wrote: On Sun, 2008-08-03 at 15:38 -0400, Jason Tackaberry wrote: The attached patch adds ClutterX11TexturePixmap and ClutterGLXTexturePixmap support to pyclutter. Hi Emmanuele, At risk of sounding like I'm nagging, I wanted to make

Re: [clutter] [PATCH] texture-from-pixmap with pyclutter

2008-08-05 Thread Jason Tackaberry
On Tue, 2008-08-05 at 16:15 +0100, Emmanuele Bassi wrote: using python on win32 to call the x11 API - and vice versa. I can prevent people to compile it on different platforms, by #ifdef'ing everything out using the defines Clutter provides, or using the clutter-${platform} pkg-config file.

Re: [clutter] [pyclutter] embedding clutter in a GTK window

2008-08-05 Thread Jan Jokela
Ah, forgot one thing, only when changing GTK window height. Also experimented with putting the clutter embed inside HBoxes and VBoxes to no effect. Jan. On Tue, Aug 5, 2008 at 4:44 PM, Jan Jokela [EMAIL PROTECTED] wrote: Hello, The following issue I'm having has been happening ever since

Re: [clutter] [pyclutter] embedding clutter in a GTK window

2008-08-05 Thread Emmanuele Bassi
On Tue, 2008-08-05 at 19:23 +0100, Jan Jokela wrote: Ah, forgot one thing, only when changing GTK window height. Also experimented with putting the clutter embed inside HBoxes and VBoxes to no effect. I've just updated the gtk-clutter.py example inside pyclutter: now the stage expands itself

Re: [clutter] pyclutter state of trunk

2008-08-05 Thread dargwin
On Tue, 2008-08-05 at 15:46 +0100, Emmanuele Bassi wrote: On Tue, 2008-08-05 at 16:36 +0200, [EMAIL PROTECTED] wrote: - subclassing clutter.Container class MyContainer (clutter.Container): def do_add (self, actor): pass def do_remove (self, actor):

[clutter] Clutter-box2d

2008-08-05 Thread Saul Lethbridge
This is really good. Is there any reason this is not released as an official package along with cairo, gtk, etc?

[clutter] PyClutter: could not convert parameter 'axis' of type 'ClutterRotateAxis'

2008-08-05 Thread Chandan Pitta
I am trying to create a rotate behaviour using clutter.BehaviourRotate() with the following code: timeline = clutter.Timeline(10, 30) alpha = clutter.Alpha(timeline, clutter.ramp_inc_func) behaviour = clutter.BehaviourRotate(alpha, clutter.Y_AXIS, clutter.ROTATE_CCW, 0, 45) But when I

[clutter] Re: PyClutter: could not convert parameter 'axis' of type 'ClutterRotateAxis'

2008-08-05 Thread Chandan Pitta
Never mind. I found the problem. Basically the args order is wrong. The API in C has a different and I was looking at the C docs (for some reason pyclutter docs never compile properly for me). On Tue, Aug 5, 2008 at 8:40 PM, Chandan Pitta [EMAIL PROTECTED]wrote: I am trying to create a rotate