mirror of
https://github.com/opus-tango/B12NumbersV3.git
synced 2026-03-20 12:05:21 +00:00
Deprecated B12Class
B12Class is now officially deprecated. It's functionality has been rolled into the B12Digit class. All references to B12Char have been switched to B12Digit, but the code has not yet been refactored to use B12Digit with total efficiency
This commit is contained in:
@@ -13,15 +13,15 @@
|
||||
public static int DECIMAL = 65;
|
||||
|
||||
Clock clock;
|
||||
B12Char p;
|
||||
B12Char t;
|
||||
B12Digit p;
|
||||
B12Digit t;
|
||||
|
||||
void setup(){
|
||||
size(400,400);
|
||||
clock = new Clock(new STime48());
|
||||
println("waiting");
|
||||
p = new B12Char('+');
|
||||
t = new B12Char('/');
|
||||
p = new B12Digit('+');
|
||||
t = new B12Digit('/');
|
||||
}
|
||||
|
||||
void draw(){
|
||||
|
||||
Reference in New Issue
Block a user