Advertisement
jeffwincek

The rockfier 0.1.0

Oct 6th, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. # takes one object selected and rockifies it.
  2. # needs the wiggler to run
  3. # recommended to run the proportionizer on the object first
  4.  
  5. wiggler(plg.ls(selection =  True), 1)
  6. plg.polySmooth( name = plg.ls(selection =  True)[0])
  7. wiggler(plg.ls(selection =  True), 2)
  8. plg.polySmooth( name = plg.ls(selection =  True)[0])
  9. wiggler(plg.ls(selection =  True), 4)
  10. plg.polySmooth( name = plg.ls(selection =  True)[0])
  11. plg.polyAverageVertex(plg.ls(selection =  True), iterations = 2)
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement