Esempio n. 1
0
 public void Assign(AppMain.NNS_VECTORFAST vector)
 {
     this.x = vector.x;
     this.y = vector.y;
     this.z = vector.z;
     this.w = vector.w;
 }
Esempio n. 2
0
 public AppMain.NNS_TRS Assign(AppMain.NNS_TRS trs)
 {
     if (this != trs)
     {
         this.Translation = trs.Translation;
         this.Rotation    = trs.Rotation;
         this.Scaling     = trs.Scaling;
     }
     return(this);
 }
Esempio n. 3
0
 public NNS_TRS(AppMain.NNS_TRS trs)
 {
     this.Translation = trs.Translation;
     this.Rotation    = trs.Rotation;
     this.Scaling     = trs.Scaling;
 }