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:
16
B12NumbersV3/MathDisplay.pde
Normal file
16
B12NumbersV3/MathDisplay.pde
Normal file
@@ -0,0 +1,16 @@
|
||||
class MathDisplay{
|
||||
B12Math math;
|
||||
|
||||
|
||||
MathDisplay(B12Math _math){
|
||||
math = _math;
|
||||
digits = new ArrayList<B12Digit>();
|
||||
}
|
||||
|
||||
// TODO take expression from math and display it in whatever state it is in
|
||||
void display(){
|
||||
for(int i = 0; i < math.expression.size(); i++){
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user