예제 #1
0
 public AxisAngle(Vect3 axis, Angle angle)
 {
     this.Axis  = axis;
     this.Angle = angle;
 }
예제 #2
0
파일: Quat.cs 프로젝트: TenYearsADream/ORTS
 public Quat(Vect3 XYZ, double W)
 {
     this.XYZ = XYZ;
     this.W   = W;
     this.Normalize();
 }