Home › Forums › GAMES在线课程(现代计算机图形学入门)讨论区 › 作业7结果立方体少了一个角 This topic has 4 replies, 4 voices, and was last updated 3 years, 5 months ago by ronweasleyding. Viewing 4 reply threads Author Posts 2020年4月21日 at 下午5:49 #5952 Score: 0 cjbhzParticipant 作业七,小的那个立方体的顶上的那个面少了一个角,但是阴影、右侧面是正确的,所以应该不是光线与包围盒求交的错误 Attachments:You must be logged in to view attached files. 2020年4月21日 at 下午5:51 #5956 Score: 0 cjbhzParticipant 这个是结果图 Attachments:You must be logged in to view attached files. 2020年4月21日 at 下午6:32 #5961 Score: 0 小狮子Participant Karma: 1 pt 检查三角形 相交判定,有没去掉 t<0的情况 2021年3月13日 at 上午9:40 #7792 Score: 0 luozhiqiangParticipant 我也遇到过这个问题,我是改了 Bounds3::IntersectP这个函数解决的。 return (t_exit >= t_enter) && (t_exit >= 0); 改成 return (t_exit >= t_enter) && (t_exit > 0); 2021年6月7日 at 下午2:06 #8613 Score: 0 ronweasleydingParticipant Karma: 1 pt 你这个是不是if 要包着下面的所有语句 不然的话条件为true时只会运行inter.happened=true; 其他是无论什么时候都会运行的 Author Posts Viewing 4 reply threads You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In