VC编译时为何会出现只要的错误!!我想你前面的三个错导致了那两个函数没有被成功定义,所有才有后面的错。或者你的确定义了两


我想你前面的三个错导致了那两个函数没有被成功定义,所有才有后面的错。

或者你的确定义了两对个返回型为int和bool的函数,但int型的没声明。

建议函数声明改成这样试试:
bool TestIntersionPlane(const Plane &plane, const CTVector &position, const CTVector &direction, double &lamda, CTVector &pNormal);

因为细节太少,也只能猜测一下了。Good Luck!