Exemple #1
0
 public AnglePY(double pitch, double yaw)
 {
     this = new AnglePY {
         Pitch = pitch, Yaw = yaw
     };
 }
Exemple #2
0
 public AnglePY(double Pitch, double Yaw)
 {
     this = new AnglePY();
     this.Pitch = Pitch;
     this.Yaw = Yaw;
 }