Home Forums GAMES在线课程(现代计算机图形学入门)讨论区 作业2和作业3 get_index函数为什么不一样

Tagged: 

Viewing 2 reply threads
  • Author
    Posts
    • #4385 Score: 0
      打雷要下雨雷欧
      Participant
      3 pts

      作业2
      int rst::rasterizer::get_index(int x, int y)
      {
      return (height-1-y)*width + x;
      }

      作业3
      int rst::rasterizer::get_index(int x, int y)
      {
      return (height – y) * width + x;
      }

    • #4386 Score: 0
      nightwatch
      Participant
      3 pts

      作业2的感觉是对的
      Bug fix忘了合并进作业3吧

    • #4388 Score: 0
      Shi YuChen(助教)
      Keymaster
      4 pts

      作业2中的get_index函数中内容是对的,请自行修改一下。
      //由于作业2和作业3是我们不同助教负责的,因为交流不及时导致了这个小bug。

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