mirror of
https://github.com/opus-tango/B12NumbersV3.git
synced 2026-03-20 12:05:21 +00:00
Pre-B12Digit refactor save
In the process of adding keypad, math, etc., and about to break B12Digit class
This commit is contained in:
@@ -13,19 +13,25 @@
|
||||
public static int DECIMAL = 65;
|
||||
|
||||
Clock clock;
|
||||
B12Char p;
|
||||
B12Char t;
|
||||
|
||||
void setup(){
|
||||
size(400,400);
|
||||
clock = new Clock(new STime48());
|
||||
println("waiting");
|
||||
p = new B12Char('+');
|
||||
t = new B12Char('/');
|
||||
}
|
||||
|
||||
void draw(){
|
||||
background(196);
|
||||
translate(width/2,height/2);
|
||||
scale(1);
|
||||
scale(2);
|
||||
point(0,0);
|
||||
clock.display();
|
||||
//p.display();
|
||||
t.display();
|
||||
}
|
||||
|
||||
void mouseClicked(){
|
||||
|
||||
Reference in New Issue
Block a user