根据矢量的投影长度求原矢量长度
摘要:已知矢量a在b上的投影长度为 proj_len,并且知道a和b的方向为an,bn 因为an,bn为单位矢量,所以 an.DotProduct(bn) = |a|*|b|*cos(theta),其中|a| = |b| = 1 解得cos(theta) = an.DotProduct(bn) 矢量a的原长度为 a_len = proj_len/cos(theta) 需要首先判断proj_len是否...
阅读全文
posted @ 2008-07-31 21:21