GtkGL.Quaternion.Quaternion C# (CSharp) Метод

Quaternion() публичный Метод

public Quaternion ( double q ) : System
q double
Результат System
        public Quaternion(double[] q)
        {
            this.w = q[0];
            this.x = q[1];
            this.y = q[2];
            this.z = q[3];
        }

Same methods

Quaternion::Quaternion ( double w, double x, double y, double z ) : System
Quaternion::Quaternion ( float q ) : System