Esempio n. 1
0
 public AngleRPY(double roll, double pitch, double yaw)
 {
     this = new AngleRPY
     {
         Roll  = roll,
         Pitch = pitch,
         Yaw   = yaw
     };
 }
Esempio n. 2
0
 public AngleRPY(double Roll, double Pitch, double Yaw)
 {
     this = new AngleRPY();
     this.Roll = Roll;
     this.Pitch = Pitch;
     this.Yaw = Yaw;
 }