mirror of
https://github.com/opus-tango/B12NumbersV3.git
synced 2026-03-20 03:55:20 +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 //
|
// B12NumbersV3 //
|
||||||
|
String dbout = new String("");
|
||||||
float scale = 2;
|
float scale = 2;
|
||||||
PVector offset;
|
PVector offset;
|
||||||
public static final int DECIMAL = 65;
|
public static final int DECIMAL = 65;
|
||||||
@@ -26,7 +27,10 @@ void setup(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void draw(){
|
void draw(){
|
||||||
|
textAlign(LEFT,TOP);
|
||||||
|
|
||||||
background(196);
|
background(196);
|
||||||
|
text(dbout,0,0);
|
||||||
mh.frameUpdate(offset, scale);
|
mh.frameUpdate(offset, scale);
|
||||||
stroke(0);
|
stroke(0);
|
||||||
strokeWeight(1);
|
strokeWeight(1);
|
||||||
@@ -38,6 +42,7 @@ void draw(){
|
|||||||
if(clock != null) clock.display();
|
if(clock != null) clock.display();
|
||||||
if(changeTime != null) changeTime.display();
|
if(changeTime != null) changeTime.display();
|
||||||
mode.display();
|
mode.display();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void mouseClicked(){
|
void mouseClicked(){
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ class B12Expression {
|
|||||||
void evaluate(){
|
void evaluate(){
|
||||||
String evalString = parseDigits();
|
String evalString = parseDigits();
|
||||||
println(evalString);
|
println(evalString);
|
||||||
|
dbout = evalString;
|
||||||
//<>// //<>//
|
//<>// //<>//
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Beta version of a clock in base 12.
|
Beta version of a clock in base 12.
|
||||||
by Nayan Sawyer
|
by Nayan Sawyer
|
||||||
started Mar 2022
|
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
|
Characters are a variation of Kaktovik Inupiaq numerals
|
||||||
reversed and in base 12 instead of 20. I take no credit
|
reversed and in base 12 instead of 20. I take no credit
|
||||||
@@ -16,6 +16,9 @@
|
|||||||
// MAYBE start clock widget structure
|
// MAYBE start clock widget structure
|
||||||
// MAYBE add additional operations like power, log, and trig functions
|
// 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
|
changelog 0.1.5.7
|
||||||
- Presentation display setup done.
|
- Presentation display setup done.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user