mirror of
https://github.com/opus-tango/B12NumbersV3.git
synced 2026-03-19 19:52:49 +00:00
0.1.5.8 - beta release tweaks
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
windows-amd64
|
||||
@@ -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(){
|
||||
|
||||
@@ -37,6 +37,7 @@ class B12Expression {
|
||||
void evaluate(){
|
||||
String evalString = parseDigits();
|
||||
println(evalString);
|
||||
dbout = evalString;
|
||||
//<>// //<>//
|
||||
}
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user