2 comments

  • bobajeff55 minutes ago
    I watched the video. I think I&#x27;ve been wanting something like this recently but there&#x27;s not really a name for this sort of thing that I know of.<p>Relatedly, I&#x27;ve been working on a step-by-step solver&#x2F;calculator but I just use sympy (via pyodide) + mathlive. But I&#x27;m starting to see the limitations of running Python in the browser and am starting to look at js libraries now.
    • dicroce39 minutes ago
      The underlying math engine is written in typescript and is open source:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;dicroce&#x2F;wyrm_math" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;dicroce&#x2F;wyrm_math</a><p>Probably it&#x27;s most important feature for applications like this is that the id&#x27;s of elements in the equations are stable (meaning, if an X has an id of 123 and a transformation moves it to the other side of the equals sign, it still has id 123... this allows you animate between states if you wish).