pymel.core.modeling.subdPlanarProjection

static modeling.subdPlanarProjection(*args, **kwargs)

Projects a map onto an object, using an orthogonal projection. The piece of the map defined from isu, isv, icx, icy area, is placed at pcx, pcy, pcz location.

Flags:
Long name (short name) Argument Types Properties
caching (cch) bool  
   
constructionHistory (ch) bool  
   
createNewMap (cm) bool ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

This flag when set true will create a new map with a the name passed in, if the map does not already exist. Flag can have multiple arguments, passed either as a tuple or a list.

imageCenter (ic2) float, float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies the center point of the 2D model layout. C: Default is 0.5 0.5. Q: When queried, this flag returns a float[2].
imageCenterX (icx) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies X for the center point of the 2D model layout. C: Default is 0.5. Q: When queried, this flag returns a float.
imageCenterY (icy) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies Y for the center point of the 2D model layout. C: Default is 0.5. Q: When queried, this flag returns a float.
imageScale (is2) float, float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

This flag specifies the UV scale : Enlarges or reduces the 2D version of the model in U or V space relative to the 2D centerpoint. C: Default is 1.0 1.0. Q: When queried, this flag returns a float[2].

imageScaleU (isu) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

This flag specifies the U scale : Enlarges or reduces the 2D version of the model in U space relative to the 2D centerpoint. C: Default is 1.0. Q: When queried, this flag returns a float.

imageScaleV (isv) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

This flag specifies the V scale : Enlarges or reduces the 2D version of the model in V space relative to the 2D centerpoint. C: Default is 1.0. Q: When queried, this flag returns a float.

insertBeforeDeformers (ibd) bool ../../../_images/create.gif
 

This flag specifies if the projection node should be inserted before or after deformer nodes already applied to the shape. Inserting the projection after the deformer leads to texture swimming during animation and is most often undesirable. C: Default is on.

keepImageRatio (kir) bool  
   
mapDirection (md) unicode ../../../_images/create.gif
 

This flag specifies the mapping direction. ‘x’, ‘y’ and ‘z’ projects the map along the corresponding axis. ‘c’ projects along the current camera viewing direction. ‘p’ does perspective projection if current camera is perspective. ‘b’ projects along the best plane fitting the objects selected.

name (n) unicode  
   
nodeState (nds) int  
   
projectionCenter (pc) float, float, float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies the origin point from which the map is projected. C: Default is 0.0 0.0 0.0. Q: When queried, this flag returns a float[3].
projectionCenterX (pcx) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies X for the origin point from which the map is projected. C: Default is 0.0. Q: When queried, this flag returns a float.
projectionCenterY (pcy) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies Y for the origin point from which the map is projected. C: Default is 0.0. Q: When queried, this flag returns a float.
projectionCenterZ (pcz) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies Z for the origin point from which the map is projected. C: Default is 0.0. Q: When queried, this flag returns a float.
projectionHeight (ph) float  
   
projectionScale (ps) float, float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies the width and the height of the map relative to the 3D projection axis. C: Default is 1.0 1.0. Q: When queried, this flag returns a float[2].
projectionWidth (pw) float  
   
rotate (ro) float, float, float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies the mapping rotate angles. C: Default is 0.0 0.0 0.0. Q: When queried, this flag returns a float[3].
rotateX (rx) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies X mapping rotate angle. C: Default is 0.0. Q: When queried, this flag returns a float[3].
rotateY (ry) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies Y mapping rotate angle. C: Default is 0.0. Q: When queried, this flag returns a float.
rotateZ (rz) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
This flag specifies Z mapping rotate angle. C: Default is 0.0. Q: When queried, this flag returns a float.
rotationAngle (ra) float ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

This flag specifies the rotation angle in the mapping space. When the angle is positive, then the map rotates counterclockwise on the mapped model, whereas when it is negative then the map rotates lockwise on the mapped model. C: Default is 10.0. Q: When queried, this flag returns a float.

smartFit (sf) bool  
   
worldSpace (ws) bool ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

This flag specifies which reference to use. If on: all geometrical values are taken in world reference. If off: all geometrical values are taken in object reference. C: Default is off. Q: When queried, this flag returns an int.

Derived from mel command maya.cmds.subdPlanarProjection

Example:

import pymel.core as pm

# Create a cube
mel.eval( "createSubdCubeProc" )

# Layout all UVs in the texture plane.
pm.subdPlanarProjection( 'subdivCube1.smf[*][*]',  rx=90, ra=45.0, pc= (0, 0, 0), imageScale=(0.5, 0.5))

Previous topic

pymel.core.modeling.subdMirror

Next topic

pymel.core.modeling.subdToBlind

Core

Core Modules

Other Modules

This Page