Home › Forums › GAMES在线课程(现代计算机图形学入门)讨论区 › 运行时出现错误 › Reply To: 运行时出现错误 2020年3月2日 at 下午8:52 #3195 Score: 0 slongle(助教)Keymaster Karma: 13 pts 有可能是数组越界,试试把rasterizer.cpp第234行auto ind = (height-point.y())*width + point.x()改成auto ind = (height-1-point.y())*width + point.x()。