mirror of
https://github.com/opus-tango/B12NumbersV3.git
synced 2026-03-20 03:55:20 +00:00
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
17 lines
306 B
Plaintext
17 lines
306 B
Plaintext
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++){
|
|
|
|
}
|
|
}
|
|
}
|