0.1.5.8 - beta release tweaks

This commit is contained in:
61616
2022-05-12 19:56:19 -04:00
parent 83f95e0d04
commit a2034715c2
4 changed files with 11 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
windows-amd64

View File

@@ -1,4 +1,5 @@
// B12NumbersV3 //
String dbout = new String("");
float scale = 2;
PVector offset;
public static final int DECIMAL = 65;
@@ -26,7 +27,10 @@ void setup(){
}
void draw(){
textAlign(LEFT,TOP);
background(196);
text(dbout,0,0);
mh.frameUpdate(offset, scale);
stroke(0);
strokeWeight(1);
@@ -38,6 +42,7 @@ void draw(){
if(clock != null) clock.display();
if(changeTime != null) changeTime.display();
mode.display();
}
void mouseClicked(){

View File

@@ -37,6 +37,7 @@ class B12Expression {
void evaluate(){
String evalString = parseDigits();
println(evalString);
dbout = evalString;
//<>// //<>//
}

View File

@@ -3,7 +3,7 @@
Beta version of a clock in base 12.
by Nayan Sawyer
started Mar 2022
version 0.1.5.7 April 30 2022
version 0.1.5.8 April 30 2022
Characters are a variation of Kaktovik Inupiaq numerals
reversed and in base 12 instead of 20. I take no credit
@@ -16,6 +16,9 @@
// MAYBE start clock widget structure
// MAYBE add additional operations like power, log, and trig functions
changelog 0.1.5.8
- Tweaks for first beta release for class presentation
changelog 0.1.5.7
- Presentation display setup done.