Hello
You have many options for extruding your face.
first:
using polyExtrudeFacet command based on faces you want to extrude
from maya import cmds
cmds.polyPlane(n="plane")
cmds.polyExtrudeFacet('plane.f[71:72]', ltz=0.2)
second:
using polyExtrudeFace[number of extrude node]:
and changing the attribute of related extrude node
from maya import cmds
cmds.polyPlane(n="plane")
cmds.polyExtrudeFacet('plane.f[71:72]')
cmds.setAttr("polyExtrudeFace1.thickness", 0.2)
i hope it helps
--
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/93e4a6a3-ac49-40f0-b8a5-34418c710b17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
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/e1df73b5-17dd-4ace-9960-a8d538511144%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.