Go to: Return value. Related commands. Flags. Examples.

Synopsis

polySphericalProjection [flags]

Projects a spherical map onto an object.

Return value

string The node name.

Related commands

polyProjection, polyForceUV, untangleUV, polyEditUV, polyPlanarProjection, polyCylindricalProjection, polyClipboard, polyMoveFacetUV, polyMoveUV, polyMapCut, polyMapDel, polyMapSew, polyUVSet

Flags

constructionHistory, createNewMap, imageCenter, imageCenterX, imageCenterY, imageScale, imageScaleU, imageScaleV, insertBeforeDeformers, name, projectionCenter, projectionCenterX, projectionCenterY, projectionCenterZ, projectionScale, projectionScaleU, projectionScaleV, rotate, rotateX, rotateY, rotateZ, rotationAngle, seamCorrect, smartFit, worldSpace

Long name (short name)[argument types]Properties
-worldSpace (-ws) booleanquerycreateedit
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.
-insertBeforeDeformers (-ibd) booleancreate
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.
-smartFit (-sf) booleancreate
This flag specifies if the manipulator should be placed best fitting the object, or be placed on the specified position with the specified transformation values.
Default is on.
-projectionCenter (-pc) linear linear linearquerycreateedit
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) linearquerycreateedit
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) linearquerycreateedit
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) linearquerycreateedit
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.
-imageCenter (-ic) linear linearquerycreateedit
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) linearquerycreateedit
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) linearquerycreateedit
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.
-rotate (-ro) angle angle anglequerycreateedit
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) anglequerycreateedit
This flag specifies X mapping rotate angle.
C: Default is 0.0.
Q: When queried, this flag returns a float[3].
-rotateY (-ry) linearquerycreateedit
This flag specifies Y mapping rotate angle.
C: Default is 0.0.
Q: When queried, this flag returns a float.
-rotateZ (-rz) linearquerycreateedit
This flag specifies Z mapping rotate angle.
C: Default is 0.0.
Q: When queried, this flag returns a float.
-projectionScale (-ps) linear linearquerycreateedit
This flag specifies the width and the height of the map relative to the 3D projection axis.
C: Default is 180.0 90.0.
Q: When queried, this flag returns a float[2].
-projectionScaleU (-psu) linearquerycreateedit
This flag specifies the width of the map relative to the 3D projection axis : the scale aperture. The range is [0, 360].
C: Default is 180.0.
Q: When queried, this flag returns a float.
-projectionScaleV (-psv) linearquerycreateedit
This flag specifies the height of the map relative to the 3D projection axis : the scale height.
C: Default is 90.0.
Q: When queried, this flag returns a float.
-imageScale (-is) linear linearquerycreateedit
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) linearquerycreateedit
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) linearquerycreateedit
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.
-rotationAngle (-ra) anglequerycreateedit
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.
-seamCorrect (-sc) booleanquerycreateedit
This flag specifies to perform a seam correction on the mapped faces.
-createNewMap (-cm) booleanquerycreateedit
This flag when set true will create a new map with a the name passed in, if the map does not already exist.

Common flags

-name (-n) stringcreate
Name the resulting object.
-constructionHistory (-ch) booleanquerycreate
Turn the construction history on or off (where applicable).
Q: When queried, this flag returns an int.

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 be used more than once in a command

Examples


  // Create a sphere with default UVs.
  polySphere -n sphere -r 10;

  // Create a lambert node.
  shadingNode -asShader lambert -n myLambert;
  sets -renderable true -noSurfaceShader true -empty -name myLambertSG;
  connectAttr -f myLambert.outColor myLambertSG.surfaceShader;

  // Create a texture checker.
  shadingNode -asTexture checker;
  shadingNode -asUtility place2dTexture;
  connectAttr place2dTexture1.outUV checker1.uv;

  // Assign the texture the the lambert node.
  connectAttr -f checker1.outColor myLambert.color;

  // Set the textured display mode.
  if ( `getPanel -to ( eval( "getPanel -withFocus" ) )` ) {
     string $currentPanel = `getPanel -withFocus`;
	 modelEditor -edit -da "smoothShaded" -displayTextures on -dl "default" $currentPanel;
  }

  // Assign the lambert shader to all faces of the sphere.
  sets -e -forceElement myLambertSG sphere.f[0:399];

  // Replace default UVs on the top of the sphere :
  // Rotates the map of 45 degrees and reduces its aperture to 20 degrees in both directions
  polySphericalProjection -ra 45.0 -pc 0 0 0 -ps 20 20 sphere.f[180:359] sphere.f[380:399];

  // Set the wireframe display mode.
  if ( `getPanel -to ( eval( "getPanel -withFocus" ) )` ) {
     string $currentPanel = `getPanel -withFocus`;
	 modelEditor -edit -da "wireframe" $currentPanel;
  }