- Sorting:
- Newest First | Oldest First
- Auto-refresh:
- Off | On
11:28AM We're off to get our hands on these things!
11:28AM Thanks for reading along!
11:28AM Hands on time!
11:28AM Well, we definitely want a MacBook Air after seeing the video.
import time
import maya.cmds as cmd
start = time.clock()
for n in range(100,1000,1):
cmd.ls()
print 'time taken %0.4f' % (time.clock()-start)