Exemple #1
0
    public MdIntObj GetAndRemoveLastObj()  // for Total
    {
        MdIntObj rObj = arrIntObj[arrIntObj.Count - 1];

        arrIntObj.Remove(rObj);
        return(rObj);
    }
Exemple #2
0
    //  ////////////////////////////////////////////////    Creation ...
    public MdFormatter(int pForm, int pLatt, Godirum pGod)
    {
        mGod = pGod;
        mFm  = new MdIntObj(pForm, true, pGod);
        mLt  = new MdIntObj(pLatt, true, pGod);

        InitGenerateChubang();
    }
Exemple #3
0
 public MdChubang(MdIntObj pFobj, MdIntObj pLobj)
 {
     mFvr = new VecRot ();
     mLvr = new VecRot ();
     mHonVr = new VecRot ();
     mHTarVr = new VecRot ();
     mFff = pFobj.GetFff ();
     mLff = pLobj.GetFff ();
     //(" New Chu bang ::: " + mFff + ",  " + mLff).HtLog ();
 }
Exemple #4
0
 public MdChubang(MdIntObj pFobj, MdIntObj pLobj)
 {
     mFvr    = new VecRot();
     mLvr    = new VecRot();
     mHonVr  = new VecRot();
     mHTarVr = new VecRot();
     mFff    = pFobj.GetFff();
     mLff    = pLobj.GetFff();
     //(" New Chu bang ::: " + mFff + ",  " + mLff).HtLog ();
 }
Exemple #5
0
    public Rect mPerfArea; // = new Rect(1, 1, 2, 2); // Performance Area ..

    #endregion Fields

    #region Constructors

    //  ////////////////////////////////////////////////    Creation ...
    public MdFormatter(int pForm, int pLatt, Godirum pGod)
    {
        mGod = pGod;
        mFm = new MdIntObj (pForm, true, pGod);
        mLt = new MdIntObj (pLatt, true, pGod);

        InitGenerateChubang ();
    }