Skip to content

Instantly share code, notes, and snippets.

@bentosetc
Created March 19, 2013 02:43
Show Gist options
  • Save bentosetc/5193329 to your computer and use it in GitHub Desktop.
Save bentosetc/5193329 to your computer and use it in GitHub Desktop.
wiggle only in x (horizontal):
org=value;
temp=wiggle (5,50);
[temp[0],org[1]];
Shorthand:
[wiggle(5,50)[0],position[1]]
wiggle only in y (vertical):
org=value;
temp=wiggle (5,50);
[org[0],temp[1]];
Shorthand:
[position[0],wiggle(5,50)[1]]
w = wiggle(2,50);
[w[0],value[1]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment