Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from pymel.core import *
- import math
- import random
- sl = selected()
- y = 0
- toCrv = []
- for i in range(0,1000):
- y += math.sin(random.uniform(-1,1))*3
- add = i,y,0
- toCrv.append(add)
- curve(p=toCrv)
Advertisement
Add Comment
Please, Sign In to add comment