[Gimp-developer] python plugin dos not receives changes to FLOATARRAY parameters done by libgimp functions.

2006-03-14 Thread Kleistereimer
hi! i wrote a c gimp plugin which is called from an python gimp plugin. the c plugin receives a FLOATARRAY parameter which it modifies. the c plugin sees the values the python plugin has put into the FLOATARRAY, but if it modifies these, this changes are not send back to the python plugin. how

Re: [Gimp-developer] python plugin dos not receives changes to FLOATARRAY parameters done by libgimp functions.

2006-03-14 Thread Manish Singh
On Wed, Mar 15, 2006 at 01:43:12AM +0100, Kleistereimer wrote: how to use gimp_path_get_points from a python plugin? here some samplecode: def somefunc(image): floatarray = [] for i in range(100): floatarray.append(0.0) closed = 0 count = 0