Advertisement
jeffwincek

The Rockifier 0.2.0

Oct 6th, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 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. def rockifier(whichOne, howMuch):
  6.     wiggler(whichOne, howMuch)
  7.     plg.polySmooth( name = whichOne)
  8.     wiggler(whichOne, howMuch*2)
  9.     plg.polySmooth( name = whichOne)
  10.     wiggler(whichOne, howMuch*4)
  11.     plg.polySmooth( name = whichOne)
  12.     plg.polyAverageVertex(whichOne, iterations = 2)
  13.  
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement