public AxisAngle(Vect3 axis, Angle angle) { this.Axis = axis; this.Angle = angle; }
public Quat(Vect3 XYZ, double W) { this.XYZ = XYZ; this.W = W; this.Normalize(); }