UF_VEC3_cross(Vec1, Vec2, CrossProduct);//已知两个向量求夹角(输出的是弧度)doubleAngle; UF_VEC3_angle_between(Vec1, Vec2, CrossProduct,&Angle);//向量点乘doubledot_product =0; UF_VEC3_dot(Vec1, Vec2,&dot_product);//a·b > 0 点乘大于0 两个向量方向基本相同 夹角在0°90°之间//...