コード例 #1
0
ファイル: Angles.cs プロジェクト: polytronicgr/SharpFlame
 public AnglePY(double pitch, double yaw)
 {
     this = new AnglePY {
         Pitch = pitch, Yaw = yaw
     };
 }
コード例 #2
0
ファイル: Angles.cs プロジェクト: pcdummy/SharpFlame
 public AnglePY(double Pitch, double Yaw)
 {
     this = new AnglePY();
     this.Pitch = Pitch;
     this.Yaw = Yaw;
 }