SetScale() public method

public SetScale ( Vec3 s ) : void
s Vec3
return void
Esempio n. 1
0
        public static Matrix33 CreateScale(Vec3 s)
        {
            var matrix = new Matrix33();

            matrix.SetScale(s);

            return(matrix);
        }
Esempio n. 2
0
        public static Matrix33 CreateScale(Vec3 s)
        {
            var matrix = new Matrix33();
            matrix.SetScale(s);

            return matrix;
        }