LoginSignup
1
0

More than 5 years have passed since last update.

Maya | 選択したオブジェクトのポリゴン数を調べる

Posted at
import maya.cmds as cmds

for obj in cmds.ls(selection=True):
    shape = cmds.listRelatives(obj, shapes=True, type="mesh")
    if shape:
        poly_num = cmds.polyEvaluate(shape[0], triangle=True)
        print obj, poly_num
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0