SetScale() public method

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

            matrix.SetScale(s);

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

            return matrix;
        }