//public static V3 operator +(V3 v3,Ratio ratio) //{ //} public FixedNumber Dot(Fixed3 b) { return(Dot(this, b)); }
public static FixedNumber Dot(Fixed3 a, Fixed3 b) { return(a.x * b.x + b.y * a.y); }
//public static V3 operator +(V3 v3,Ratio ratio) //{ //} public Fixed Dot(Fixed3 b) { return(Dot(this, b)); }