Home › Forums › GAMES在线课程(现代计算机图形学入门)讨论区 › 作业7结果立方体少了一个角 › Reply To: 作业7结果立方体少了一个角
Participant
我也遇到过这个问题,我是改了 Bounds3::IntersectP这个函数解决的。
return (t_exit >= t_enter) && (t_exit >= 0);
改成
return (t_exit >= t_enter) && (t_exit > 0);
GAMES: Graphics And Mixed Environment Symposium