public BumpSteerCurve() { InitializeComponent(); ChartPoints_X = new List <double>(); ChartPoints_Y = new List <double>(); BumpSteerParms = new CustomBumpSteerParams(); //AddPointToChart(chartControl1, 0, 0, 0, false); }
public SetupChange_CornerVariables() { Caster_KPI_Adj = new Dictionary <string, SetupChange_AdjToolParams>(); Camber_Adj = new Dictionary <string, SetupChange_AdjToolParams>(); Toe_Adj = new Dictionary <string, SetupChange_AdjToolParams>(); BumpSteer_Adj = new Dictionary <string, SetupChange_AdjToolParams>(); Master_Adj = new Dictionary <string, Dictionary <string, SetupChange_AdjToolParams> >(); BS_Params = new CustomBumpSteerParams(); }
/// <summary> /// Constructor /// </summary> public KO_CornverVariables(VehicleCorner _vCorner) { VCorner = _vCorner; KO_MasterAdjs = new Dictionary <string, KO_AdjToolParams>(); KO_ReqParams = new List <SuspensionParameters>(); KO_ReqParams_Importance = new Dictionary <SuspensionParameters, double>(); BumpSteerCurve = new CustomBumpSteerParams(); CamberCurve = new CustomCamberCurve(); Caster = new Angle(); KPI = new Angle(); VCornerParams = new VehicleCornerParams(); Initialize_Default_MotionProfile(); //ContactPatch = new Point3D(); }