DylanHojnoski / obsidian-graphs

Plugin for Obsidian that renders interactive graphs from YAML.
GNU General Public License v3.0
27 stars 1 forks source link

Math functions #4

Closed DylanHojnoski closed 5 months ago

DylanHojnoski commented 5 months ago

This makes it so that Math functions are bound to functions that users create allowing them to not need to put Math. for every math function. For example instead of Math.sin(x) you can do sin(x). This will make writing functions easy and it will be easier to read. The checkForFunctions and checkForComposed functions were changed to be recursive which allows for arrays within arrays to be checked.