Re: [Soya-user] animating rotation

2008-04-14 Thread snaipperi
Oh right, and fix the same for initializing the Body! soya.Body.__init__(self, parent, soya.cube.Cube(soya.Body, color)) On Mon, Apr 14, 2008 at 1:29 PM, snaipperi <[EMAIL PROTECTED]> wrote: > The constructor of a class must be "__init__", not "_init_" > > .class Cube(soya.Body): > > . > . #C

Re: [Soya-user] animating rotation

2008-04-14 Thread snaipperi
The constructor of a class must be "__init__", not "_init_" .class Cube(soya.Body): . . #Constructor . def __init__(self, parent): That should fix it, Matti On Mon, Apr 14, 2008 at 7:01 AM, g p <[EMAIL PROTECTED]> wrote: > I've been having problems animating rotation. I modelled my simple pr