Go to: Synopsis. Flags. Return value. Python examples.
textCurves(
[string]
, [font=string], [name=string], [object=boolean], [text=string])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
textCurves is undoable, queryable, and editable.
The textCurves command creates NURBS curves from a text string
using the specified font.
A single letter can be made up of more than one NURBS curve.
The number of curves per letter varies with the font.
font, name, object, text
| Long name (short name) |
[argument types] |
Properties |
text(t)
|
string
|
|
|
The string to create the curves for
|
|
font(f)
|
string
|
|
|
|
name(n)
|
string
|
|
|
Name the resulting object
|
|
object(o)
|
boolean
|
|
|
Create the result shapes, or just the dependency node
|
|
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can have multiple arguments, passed either as a tuple or a list.
|
[string[]] (object name and node name)
import maya.cmds as cmds
# Create curves for text string "Maya" in the "Times-Roman" font:
cmds.textCurves( f='Times-Roman', t='Maya' )
# Create curves for text "hello world" in the "Courier" font.
# The "-n" flag specifies the name of the resulting transform
# and shape.
cmds.textCurves( n= 'first', f='Courier', t='hello world' )
Return to Autodesk Index