Home › Forums › GAMES在线课程(现代计算机图形学入门)讨论区 › 作业1编译失败的问题 › Reply To: 作业1编译失败的问题 2020年3月2日 at 下午5:43 #3186 Score: 0 Shi YuChen(助教)Keymaster Karma: 4 pts 先试试make时把-j4去掉。 如果不行,有可能是数组越界,再试试把rasterizer.cpp第234行auto ind = (height-point.y())*width + point.x()改成auto ind = (height-1-point.y())*width + point.x()。