Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- total options:
- 2 2 2 // this could be something like "2 1 1", all numbers don't need to be the same
- // indexed from +0 to +1 (length = 2)
- itterations: (-1 = not at all)
- // 0 arguments
- -1 -1 -1
- // 1 argument
- +0 -1 -1
- +1 -1 -1
- -1 +0 -1
- -1 +1 -1
- -1 -1 +0
- -1 -1 +1
- // 2 arguments
- +0 +0 -1
- +1 +0 -1
- +0 +1 -1
- +1 +1 -1
- -1 +0 +0
- -1 +1 +0
- -1 +0 +1
- -1 +1 +1
- +0 -1 +0
- +1 -1 +0
- +0 -1 +1
- +1 -1 +1
- //... how to continue this pattern?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement