YLScsDrawing.Geometry.Vector.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : Vector
return Vector
        public static Vector operator *(double c, Vector v)
        {
            return new Vector(c * v.X, c * v.Y);
        }