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

public SetRotationX ( float rad, Vec3 t = default(Vec3) ) : void
rad float
t Vec3
Результат void
Пример #1
0
        public static Matrix34 CreateRotationX(float rad, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();

            matrix.SetRotationX(rad, t);

            return(matrix);
        }
Пример #2
0
        public static Matrix34 CreateRotationX(float rad, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetRotationX(rad, t);

            return matrix;
        }