View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://code.jquery.com/jquery-git.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<script> | |
View gist:9346f58d2e2314ca30a5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
somethting |
View TinkerableArray.pde
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int rows = 10; | |
int columns = 12; | |
int[] circles = new int[rows*columns]; | |
int index; | |
int spacing = 50; | |
int circleSize = 6; | |
void setup() | |
{ | |