using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace grapher.Constants { public static class AccelGUIConstants { #region Constants /// Vertical separation between charts, in pixels. public const int ChartSeparationVertical = 10; /// Needed to show full contents in form. Unsure why. public const int FormHeightPadding = 35; /// DPI by which charts are scaled if none is set by user. public const int DefaultDPI = 1200; /// Poll rate by which charts are scaled if none is set by user. public const int DefaultPollRate = 1000; /// Resolution of chart calulation. public const int Resolution = 100; /// Multiplied by DPI over poll rate to find rough max expected velocity. public const double MaxMultiplier = 85; /// Ratio of max (X, Y) used in "by component" calulations to those used in "whole vector" calculations. public const double XYToCombinedRatio = 1.4; #endregion Constants } }