class something():
def __init__(self):
...
self.uiSetupNormalSmooth = cmds.radioButton(label='Geometry normal',
align='right',
onCommand=lambda*args:self.setupCallback("uiSetupNormalCol", True)) self.uiSetupNormalSmooth = cmds.radioButton(label='Geometry normal',
align='right',
onCommand=(lambda*args:
self.setupCallback("uiSetupNormalCol", True)))cbk = lambda *args: self.setupCallback("uiSetupNormalCol", True)
self.uiSetupNormalSmooth = cmds.radioButton(label='Geometry normal',
align='right',
onCommand=cbk)
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/bf0a3f06-3327-4b67-a948-a637b487fff7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
self.uiSetupNormalSmooth = cmds.radioButton(
label='Geometry normal',
align='right',
onCommand=lambda*args: self.setupCallback(
"uiSetupNormalCol",
True,
),
)--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPaTLMQQRHm_hiY%2B9W6WStCHPc15E%3Dmvxw62ATtLfEyOZE55iQ%40mail.gmail.com.
Class Something(object):
def __init__(self, rotate=((0, 0), (0, 0), (0, 0)), scale=((1, 1), (1, 1), (1, 1)), u_jitter=(0,0), v_jitter=(0,0)):--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/0af2c859-544f-483d-8eab-394a5ba3466d%40googlegroups.com.
class Something(object): def __init__( self,
rotate=((0, 0), (0, 0), (0, 0)),
scale=((1, 1), (1, 1), (1, 1)),
u_jitter=(0, 0),
v_jitter=(0, 0),
):
pass