im trying to create a 2 point bezier curve from the cmds commands in python bit hit a little snag.
i first got hte command by placeing a curve and looking at the script editor histry whihc showed me hte mel command
curve -d 3 -p -144 0 0 -p -144 0 0 -p 64 0 0 -p 64 0 0 -k 0 -k 0 -k 0 -k 1 -k 1 -k 1 ;
than made that into it's python equlivnet.
import maya.cmds as cmds
cmds.curve( d=3, p=[(-144, 0, 0), (-144, 0, 0), (64, 0, 0), (64, 0, 0)], k=(0, 0, 0, 1, 1, 1) )
but once i run that python code it creats just a basic curve.
does anyone know why this is happening?