Skip to content

Commit

Permalink
+ Mesh Editor.
Browse files Browse the repository at this point in the history
#2 ExportAs ok
Improving TreeNode. Addition vectors 1/1 (revert to my Android Calculator App)
Game works again.
TextDialog in feature processing
Include spaces in AlgebraicTree formulas.

Signed-off-by: Manuel Daniel Dahmen <[email protected]>
  • Loading branch information
manuelddahmen committed Jan 24, 2024
1 parent 8f8fe54 commit 292eb51
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/test/java/one/empty3/library1/tree/TestAlgebraicTreeVector.kt
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,19 @@ class TestAlgebraicTreeVector() {
)
}

@Test
fun testForVectorSumWithSpaces() {
val r = 12.0
val vars = HashMap<String, Double>()
vars["r"] = r
testResultVariableVec(
" ( 2 , 1 , 2 ) + ( 2 , 2 , 3 ) - ( 1, 2 , 3 ) ",
Vec(3.0, 1.0, 2.0),
vars,
true
)
}

@Test
fun testTextCalculator3() {
val listInstructions: ListInstructions = ListInstructions()
Expand Down

0 comments on commit 292eb51

Please sign in to comment.