Go to: Synopsis. Return value. Related. Flags. MEL examples.

Synopsis

polyPoke [-caching boolean] [-constructionHistory boolean] [-localTranslate linear linear linear] [-localTranslateX linear] [-localTranslateY linear] [-localTranslateZ linear] [-name string] [-nodeState int] [-translate linear linear linear] [-translateX linear] [-translateY linear] [-translateZ linear] [-worldSpace boolean] selectionList

polyPoke is undoable, queryable, and editable.

Introduces a new vertex in the middle of the selected face, and connects it to the rest of the vertices of the face.

Return value

stringThe node name

In query mode, return type is based on queried flag.

Related

polySubdivideFacet

Flags

caching, constructionHistory, localTranslate, localTranslateX, localTranslateY, localTranslateZ, name, nodeState, translate, translateX, translateY, translateZ, worldSpace
Long name (short name) Argument types Properties
-localTranslate(-lt) linear linear linear create
translate the new vertex in the local face coordinate.
-localTranslateX(-ltx) linear create
translate the new vertex in the local face coordinate along X.
-localTranslateY(-lty) linear create
translate the new vertex in the local face coordinate along Y.
-localTranslateZ(-ltz) linear create
translate the new vertex in the local face coordinate along Z.
-translate(-t) linear linear linear create
translate the new vertex in the world space.
-translateX(-tx) linear create
translate the new vertex in the world space along X.
-translateY(-ty) linear create
translate the new vertex in the world space along Y.
-translateZ(-tz) linear create
translate the new vertex in the world space along Z.
-worldSpace(-ws) boolean create
This flag specifies if the operation has to be performed in the world space or not.
Common flags
-name(-n) string create
Give a name to the resulting node.
-constructionHistory(-ch) boolean createquery
Turn the construction history on or off (where applicable). If construction history is on then the corresponding node will be inserted into the history chain for the mesh. If construction history is off then the operation will be performed directly on the object.
Note: If the object already has construction history then this flag is ignored and the node will always be inserted into the history chain.
-caching(-cch) boolean createedit
Toggle caching for all attributes so that no recomputation is needed
-nodeState(-nds) int createqueryedit
Defines how to evaluate the node.
  • 0: Normal
  • 1: PassThrough
  • 2: Blocking
  • 3: Internally disabled. Will return to Normal state when enabled
  • 4: Internally disabled. Will return to PassThrough state when enabled
  • 5: Internally disabled. Will return to Blocking state when enabled

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.

MEL examples

// To poke all the faces of a polyCube...
//
polyCube -w 1 -h 1 -d 1 -sx 1 -sy 1 -sz 1 -ax 0 1 0 -tx 1 -ch 1 -n pCube;
polyPoke -ch 1 pCube.f[0:5];
// To poke all the faces of a polyCube, and pull the
// new vertices by one unit along the face normal
//
polyCube -w 1 -h 1 -d 1 -sx 1 -sy 1 -sz 1 -ax 0 1 0 -tx 1 -ch 1 -n pCubePull;
polyPoke -ltx 0 -lty 0 -ltz 1 -ch 1 pCubePull.f[0:5];