I have a list of floats [234, 533, 734, 964, 623, 744, 244, 353, 264]
. Then, I format it to a string like "(234, 533, 734), (964, 623, 744), (244, 353, 264)"
.
This is a format example of the function I'm passing it to:
cmds.curve( p=[(0, 0, 0), (3, 5, 6), (5, 6, 7), (9, 9, 9)] )
Here's what I used that returned an error:
cmds.curve( p = [ pStr ] )
Here's the error:
Line 142: Invalid arguments for flag 'p'. Expected ( distance, distance, distance ), got [ str, str ] #