[Bf-python] IPO patch posted

Wouter van Heyst larstiq at larstiq.dyndns.org
Fri Jun 24 14:55:37 CEST 2005


On Thu, Jun 23, 2005 at 02:26:51PM -0700, Ken Hughes wrote:
> As a small starting point on the Ipo/Curve refactoring, I've posted
> a simple patch on the patch tracker which lets makes this code
> 
>   ipo = Blender.Get.Ipo('ObIpo')
>   print ipo.getNCurves()
>   c1 = ipo.getCurve('LocX')
>   c2 = ipo.addCurve('LocY')
> 
> becomes
> 
>   ipo = Blender.Get.Ipo('ObIpo')
>   print len(ipo)
>   c1 = ipo['LocX']
>   c2 = ipo.append('LocY')

Sweet!

> Unfortunately I posted it under the "None" category (can someone move
> it to the right place?).

It's done, but it surprises me you don't have those rights yourself?

Wouter van Heyst



More information about the Bf-python mailing list