[Maya-Python] Re: [maya] nurbsCurve node modifying its input curveDatas

2018-11-06 Thread fruityfrank
Le mardi 6 novembre 2018 09:57:50 UTC-5, Neil Roche a écrit : > I would guess that the curveFromSurfaceIso node will work like a parametric > curve irrespective of whether parametric is set on or off as you have the min > and max U values at 0 and 1 and it has no concept of where to draw any cvs

[Maya-Python] Re: [maya] nurbsCurve node modifying its input curveDatas

2018-11-06 Thread Neil Roche
I would guess that the curveFromSurfaceIso node will work like a parametric curve irrespective of whether parametric is set on or off as you have the min and max U values at 0 and 1 and it has no concept of where to draw any cvs inbetween. Once you have created the curve by connecting the outp

[Maya-Python] Re: [maya] nurbsCurve node modifying its input curveDatas

2018-11-05 Thread fruityfrank
Le lundi 5 novembre 2018 13:28:25 UTC-5, Neil Roche a écrit : > Hi, > > > Because of a weird bug in Maya when you set parametric length on a motion > path you need to set the opposite;  > > > cmds.setAttr(mp + '.fractionMode', True)   > > > actually turns parametric off. > > > So you need

[Maya-Python] Re: [maya] nurbsCurve node modifying its input curveDatas

2018-11-05 Thread Neil Roche
Hi, Because of a weird bug in Maya when you set parametric length on a motion path you need to set the opposite; cmds.setAttr(mp + '.fractionMode', True) actually turns parametric off. So you need to do cmds.setAttr(mp + '.fractionMode', not True) or cmds.setAttr(mp + '.fractionMode',