From f315e8160e984df93be6667929db34749aa25cfa Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Thu, 30 Jul 2020 02:00:20 -0700 Subject: Use class heirarchy for layout types --- grapher/Layouts/PowerLayout.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 grapher/Layouts/PowerLayout.cs (limited to 'grapher/Layouts/PowerLayout.cs') diff --git a/grapher/Layouts/PowerLayout.cs b/grapher/Layouts/PowerLayout.cs new file mode 100644 index 0000000..6d4f5d7 --- /dev/null +++ b/grapher/Layouts/PowerLayout.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace grapher.Layouts +{ + public class PowerLayout : LayoutBase + { + public PowerLayout() + { + Name = "Power"; + Index = 6; + Show = new bool[] { true, true, false }; + OptionNames = new string[] { Scale, Exponent, string.Empty }; + } + } +} -- cgit v1.2.3