私の質問は、オブジェクトまたは面のラティスまたは頂点、またはすべて、またはPythonのリストから完全にランダムに選択された(たとえば、このスクリプトで)点の乱数を選択する方法です。
最初にこのスクリプトのランダム選択について説明してください
cm.select('ffd1Lattice.pt[:][:][:]',r=True)
その後、リストとすべての方法でのランダム選択について説明してください。
よろしくお願いします
import maya.cmds as cm
import sys
import random as rand
myList = cm.ls ( sl = True)
def softIt(*arg):
cm.polySmooth( c = True , dv = 1 , kb = False )
def randomize(*arg):
myList = cm.ls ( sl = True)
for i in myList:
cm.lattice( dv=(4, 5, 4), oc=True )
cm.select('ffd1Lattice.pt[:][:][:]',r=True)
cm.xform( r = True , t = [ rand.uniform(-1,1) , rand.uniform(-1,1) , rand.uniform(-1,1)] )
cm.headsUpMessage('this script just work with one object at time', verticalOffset=250)
cm.window( t = 'Randomaize' , s = False)
cm.columnLayout()
cm.button( l = 'do it' , c = randomize , w = 200)
cm.button( l = 'soft it' , c = softIt , w = 200)
cm.showWindow()
sys.stdout.write("this script just work with one object at time\t\"script by Amin khormaei\"")