public clsPad(clsRadB Current_RadB_In)
            //====================================
            {
                mCurrent_RadB = Current_RadB_In;

                //....Default Values:
                mCount        = 4;
                mPivot.Offset = 50.0F;
            }
        //....Class Constructor
        public clsJBearing(clsUnit.eSystem UnitSystem_In, clsBearing.eType BearingType_In)
            : base(UnitSystem_In, BearingType_In)
            //===============================================================================
        {
            mUnit.System = UnitSystem_In;

            mRadB = new clsRadB(UnitSystem_In, clsRadB.eDesign.Flexure_Pivot, this);

            //....End Plates:
            mEndPlate = new clsEndPlate[2];

            //....Mount
            mMount = new clsMount[2];

            for (int i = 0; i < 2; i++)
            {
                mEndPlate[i] = new clsEndPlate(mUnit.System, this);
                mMount[i]    = new clsMount(this);
            }
        }
 public clsFlange(clsRadB Current_RadB_In)
 //=======================================
 {
     mCurrent_RadB = Current_RadB_In;
 }