Home Forums GAMES在线课程(现代计算机图形学入门)讨论区 作业7结果立方体少了一个角

Viewing 4 reply threads
  • Author
    Posts
    • #5952 Score: 0
      cjbhz
      Participant

      作业七,小的那个立方体的顶上的那个面少了一个角,但是阴影、右侧面是正确的,所以应该不是光线与包围盒求交的错误

      Attachments:
      You must be logged in to view attached files.
    • #5956 Score: 0
      cjbhz
      Participant

      这个是结果图

      Attachments:
      You must be logged in to view attached files.
    • #5961 Score: 0
      小狮子
      Participant
      1 pt

      检查三角形 相交判定,有没去掉 t<0的情况

    • #7792 Score: 0
      luozhiqiang
      Participant

      我也遇到过这个问题,我是改了 Bounds3::IntersectP这个函数解决的。
      return (t_exit >= t_enter) && (t_exit >= 0);
      改成
      return (t_exit >= t_enter) && (t_exit > 0);

    • #8613 Score: 0
      ronweasleyding
      Participant
      1 pt

      你这个是不是if 要包着下面的所有语句 不然的话条件为true时只会运行inter.happened=true; 其他是无论什么时候都会运行的

Viewing 4 reply threads
  • You must be logged in to reply to this topic.