/// <summary>
 /// ---Used when only the Inboard Point is known---
 /// Method to Plot a Point
 /// </summary>
 /// <param name="_point">Point to be plotted</param>
 /// <param name="_pointName">Name of the Point</param>
 private void Plot_Point(Point3D _point, string _pointName)
 {
     Design_Form.Plot_OutboardPoint(_point, _pointName);
 }
        private void Set_ARB_EndPoint_X()
        {
            if (DoubleValidation(tbARB_EndPoint_X.Text))
            {
                KO_CV_Main.VCornerParams.ARB_EndPoint_Chassis.Z = Convert.ToDouble(tbARB_EndPoint_X.Text);

                ParentObject.Plot_OutboardPoint(KO_CV_Main.VCornerParams.ARB_EndPoint_Chassis, "KO_CV_Main.VCornerParams.ARB_EndPoint_Chassis" + VCorner_Main.ToString());

                if (Symmetry)
                {
                    KO_CV_Counter.VCornerParams.ARB_EndPoint_Chassis.Z = KO_CV_Main.VCornerParams.ARB_EndPoint_Chassis.Z;

                    ParentObject.Plot_OutboardPoint(KO_CV_Counter.VCornerParams.ARB_EndPoint_Chassis, "KO_CV_Counter.VCornerParams.ARB_EndPoint_Chassis" + VCorner_Counter.ToString());

                    ParentObject.Plot_InboardPoints(KO_CV_Main.VCornerParams.ARB_EndPoint_Chassis, KO_CV_Counter.VCornerParams.ARB_EndPoint_Chassis, "KO_CV_Main.VCornerParams.ARB_EndPoint_Chassis, KO_CV_Counter.VCornerParams.ARB_EndPoint_Chassis",
                                                    "ARB" + VCorner_Main.ToString() + VCorner_Counter.ToString());
                }
            }
            else
            {
                MessageBox.Show(NumericError);
            }
        }