In Blender 2.25, i’ve tried the following Code:
Curve = Object.getSelected()[0].getIpo().get('RotZ')
Frame = 155
Position = 20.0/180*pi
Curve.addBezier((Frame,Position))
Curve.update()
If i do that, the new Point is on the specified Position at (X155,Y20). But the whole Rest of the Curve is scaled in the Y-Axis with the Factor 5.729! I had a Look at the Ipo Module and found the _radian_factor. It’s a Float with a Value of 5.729! :o What does that mean? And how can i insert a Point to my Curve without this scaling?
Thanx,Doc