Advertisement
C0BRA

Untitled

Oct 21st, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. total options:
  2. 2 2 2 // this could be something like "2 1 1", all numbers don't need to be the same
  3.  
  4. // indexed from +0 to +1 (length = 2)
  5.  
  6. itterations: (-1 = not at all)
  7.  
  8. // 0 arguments
  9. -1 -1 -1
  10. // 1 argument
  11. +0 -1 -1
  12. +1 -1 -1
  13. -1 +0 -1
  14. -1 +1 -1
  15. -1 -1 +0
  16. -1 -1 +1
  17. // 2 arguments
  18. +0 +0 -1
  19. +1 +0 -1
  20. +0 +1 -1
  21. +1 +1 -1
  22. -1 +0 +0
  23. -1 +1 +0
  24. -1 +0 +1
  25. -1 +1 +1
  26. +0 -1 +0
  27. +1 -1 +0
  28. +0 -1 +1
  29. +1 -1 +1
  30. //... how to continue this pattern?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement