SetScale() public method

public SetScale ( Vec3 s, Vec3 t = default(Vec3) ) : void
s Vec3
t Vec3
return void
Ejemplo n.º 1
0
        public static Matrix34 CreateScale(Vec3 s, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();

            matrix.SetScale(s, t);

            return(matrix);
        }
Ejemplo n.º 2
0
        public static Matrix34 CreateScale(Vec3 s, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetScale(s, t);

            return matrix;
        }