The torus command creates a new torus and/or a dependency node that creates one, and returns their names.
Flags:
Long Name / Short Name | Argument Types | Properties | |
---|---|---|---|
axis / ax | float, float, float | ![]() ![]() ![]() |
|
|
|||
caching / cch | bool | ![]() ![]() ![]() |
|
|
|||
constructionHistory / ch | bool | ![]() |
|
|
|||
degree / d | int | ![]() ![]() ![]() |
|
|
|||
endSweep / esw | float | ![]() ![]() ![]() |
|
|
|||
frozen / fzn | bool | ![]() ![]() |
|
heightRatio / hr | float | ![]() ![]() ![]() |
|
|
|||
minorSweep / msw | float | ![]() ![]() ![]() |
|
|
|||
name / n | unicode | ![]() |
|
Sets the name of the newly-created node. If it contains namespace path, the new node will be created under the specified namespace; if the namespace does not exist, it will be created. |
|||
nodeState / nds | int | ![]() ![]() ![]() |
|
|
|||
object / o | bool | ![]() |
|
|
|||
pivot / p | float, float, float | ![]() ![]() ![]() |
|
|
|||
polygon / po | int | ![]() |
|
The value of this argument controls the type of the object created by this operation 0: nurbs surface1: polygon (use nurbsToPolygonsPref to set the parameters for the conversion)2: subdivision surface (use nurbsToSubdivPref to set the parameters for the conversion)3: Bezier surface4: subdivision surface solid (use nurbsToSubdivPref to set the parameters for the conversion)Flag can have multiple arguments, passed either as a tuple or a list. |
|||
radius / r | float | ![]() ![]() ![]() |
|
|
|||
sections / s | int | ![]() ![]() ![]() |
|
|
|||
spans / nsp | int | ![]() ![]() ![]() |
|
|
|||
startSweep / ssw | float | ![]() ![]() ![]() |
|
|
|||
tolerance / tol | float | ![]() ![]() ![]() |
|
|
|||
useTolerance / ut | bool | ![]() ![]() ![]() |
|
|
Derived from mel command maya.cmds.torus
Example:
import pymel.core as pm
pm.torus()
# Result: [nt.Transform(u'nurbsTorus1'), nt.MakeNurbTorus(u'makeNurbTorus1')] #
pm.torus( ch=True, radius=10, hr=3 )
# Result: [nt.Transform(u'nurbsTorus2'), nt.MakeNurbTorus(u'makeNurbTorus2')] #
pm.torus( r=5, axis=(1, 1, 1), pivot=(0, 0, 1), ssw='0deg', esw='90deg', msw='45deg' )
# Result: [nt.Transform(u'nurbsTorus3'), nt.MakeNurbTorus(u'makeNurbTorus3')] #
pm.torus( ut=True, tol=0.01 )
# Result: [nt.Transform(u'nurbsTorus4'), nt.MakeNurbTorus(u'makeNurbTorus4')] #
# query the torus radius
r = pm.torus( 'nurbsTorus1', r=True, q=True )