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

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

            matrix.SetScale(s, t);

            return(matrix);
        }
Пример #2
0
        public static Matrix34 CreateScale(Vec3 s, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetScale(s, t);

            return matrix;
        }