Exemplo n.º 1
0
            public Settings(Page page)
            {
                Page = page;
                this.DebugInfo = new DebugInformation(page);

                // create Polar List
                DynamicGeometry.Settings.Instance.PolarItems = new[]
                {
                    "5",
                    "10",
                    "15",
                    "18",
                    "22.5",
                    "30",
                    "45",
                    "90"
                };

                PolarValue a = new PolarValue();
                a.Val = 30;
                DynamicGeometry.Settings.Instance.PolarIncrement = a;
            }
Exemplo n.º 2
0
 public DebugInformation(Page page)
 {
     Page = page;
 }