22 lines
551 B
C#
22 lines
551 B
C#
using Graphing.Forms;
|
|
using Graphing.Graphables;
|
|
|
|
namespace Graphing.Testing;
|
|
|
|
internal static class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.SetHighDpiMode(HighDpiMode.PerMonitorV2);
|
|
|
|
GraphForm graph = new("One Of The Graphing Calculators Of All Time");
|
|
graph.Graph(new Equation(x => Math.Pow(2, x)));
|
|
graph.Graph(new Equation(Math.Log2));
|
|
|
|
Application.Run(graph);
|
|
}
|
|
}
|