From a2034715c256e08966251e642b031600b348e982 Mon Sep 17 00:00:00 2001 From: 61616 Date: Thu, 12 May 2022 19:56:19 -0400 Subject: [PATCH] 0.1.5.8 - beta release tweaks --- .gitignore | 1 + B12NumbersV3/B12NumbersV3.pde | 5 +++++ B12NumbersV3/guiB12Expression.pde | 1 + B12NumbersV3/zchangelog.pde | 5 ++++- 4 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0e3e4dc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +windows-amd64 diff --git a/B12NumbersV3/B12NumbersV3.pde b/B12NumbersV3/B12NumbersV3.pde index 95d8432..a96feb3 100644 --- a/B12NumbersV3/B12NumbersV3.pde +++ b/B12NumbersV3/B12NumbersV3.pde @@ -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(){ diff --git a/B12NumbersV3/guiB12Expression.pde b/B12NumbersV3/guiB12Expression.pde index 695a643..d7e7aa8 100644 --- a/B12NumbersV3/guiB12Expression.pde +++ b/B12NumbersV3/guiB12Expression.pde @@ -37,6 +37,7 @@ class B12Expression { void evaluate(){ String evalString = parseDigits(); println(evalString); + dbout = evalString; //<>// //<>// } diff --git a/B12NumbersV3/zchangelog.pde b/B12NumbersV3/zchangelog.pde index 3349656..57ec696 100644 --- a/B12NumbersV3/zchangelog.pde +++ b/B12NumbersV3/zchangelog.pde @@ -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.