public static Vector3 operator *(Matrix3 matrix, Vector3 vec3) { Vector3 tmp = new Vector3(); tmp = Matrix3.Multiply(matrix, vec3); return(tmp); }