First time here? Check out the FAQ!
answered 2013-02-09 11:02:59 -0600
change your code :
double b = dot(&dA,&dB);
to :
double b = A.dot(dB);
updated 2013-02-09 11:03:59 -0600
double b = A.dot(dB); A.dot(B);