pymel.core.modeling.illustratorCurves

illustratorCurves(*args, **kwargs)

The illustratorCurves command creates NURBS curves from an input Adobe(R) Illustrator(R) file

Flags:
Long name (short name) Argument Types Properties
caching (cch) bool  
   
constructionHistory (ch) bool ../../../_images/create.gif
 
Turn the construction history on or offFlag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list.
illustratorFilename (ifn) unicode ../../../_images/create.gif
 
Input Adobe(R) Illustrator(R) file name
name (n) unicode ../../../_images/create.gif
 
Name the resulting object
nodeState (nds) int  
   
object (o) bool ../../../_images/create.gif
 
Create the result shapes, or just the dependency node
scaleFactor (sf) float ../../../_images/create.gif
 
The scale factor
tolerance (tl) float  
   

Derived from mel command maya.cmds.illustratorCurves

Example:

import pymel.core as pm

import maya.cmds as cmds

# Create curves from an input Adobe(R) Illustrator(R) file d:/sample.ai
# and scale factor 2.54
pm.illustratorCurves( ifn='d:/sample.ai', sf=2.54 )
# Result: [u'IllustratorCurves1', u'makeIllustratorCurves1'] #

Previous topic

pymel.core.modeling.hardenPointCurve

Next topic

pymel.core.modeling.insertKnotCurve

Core

Core Modules

Other Modules

This Page