Exemple #1
0
        //public static V3 operator +(V3 v3,Ratio ratio)
        //{

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

        //}
        public Fixed Dot(Fixed3 b)
        {
            return(Dot(this, b));
        }