From cec86ee56ae8d96b4fae80e9e5953f4bd417b411 Mon Sep 17 00:00:00 2001 From: puqeko Date: Sun, 23 Jul 2023 16:42:46 +1200 Subject: [PATCH] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e3f74a..822a800 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This is intended as a toy for helping get my head around [Geometric Algebra](htt Some nice features: * The value of the last expression is displayed in the output console. -* The script is re-evaluated automatically and progress is saved to your local browser cache incase the page accidentally reloads +* Ctrl + R (Run), Ctrl + S (Save) * Can use the `print` and `graph` functions to output multiple messages to the console and show multiple graphs respectively. Use `context_manager.pushAlgebra(...)` and `context_manager.popAlgebra()` to change the currently active Algebra 'mode'. They take the same arguments as the `Algebra` factory from `ganja.js` but there might be some support holes. The default is 2D PGA, equivilent to `Algebra(2, 0, 1)`. The current algebra object is accessiable via `context_manager.getAlgebra()` but direct access is probably not needed. This helps with the scoping and consistancy issues stated above but also helps with interoperability by ensuring each algebra produced by the factory is a singleton. This all probably comes at a slight performance cost that I am yet to care about.