MathSolver.functions
public Dictionary<string, MathFunction> functions { get; }Description#
Get list of built-in functions
Usage#
Example
using NullSave.GDTK;using System.Collections.Generic;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { MathSolver solver = new MathSolver();
Dictionary<string, MathFunction> knownFunctions = solver.functions; }
}