Home › Forums › GAMES在线课程(现代计算机图形学入门)讨论区 › 作业2和作业3 get_index函数为什么不一样 Tagged: 作业三 This topic has 2 replies, 3 voices, and was last updated 4 years, 8 months ago by Shi YuChen(助教). Viewing 2 reply threads Author Posts 2020年3月17日 at 上午10:59 #4385 Score: 0 打雷要下雨雷欧Participant Karma: 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; } 2020年3月17日 at 上午11:05 #4386 Score: 0 nightwatchParticipant Karma: 3 pts 作业2的感觉是对的 Bug fix忘了合并进作业3吧 2020年3月17日 at 上午11:24 #4388 Score: 0 Shi YuChen(助教)Keymaster Karma: 4 pts 作业2中的get_index函数中内容是对的,请自行修改一下。 //由于作业2和作业3是我们不同助教负责的,因为交流不及时导致了这个小bug。 Author Posts Viewing 2 reply threads You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In