Home Forums GAMES在线课程(现代计算机图形学入门)讨论区 关于作业2insideTriangle函数问题

Viewing 2 reply threads
  • Author
    Posts
    • #11865 Score: 0
      七月夏未央
      Participant

      作业2中insideTriangle函数接受的两个参数x和y是int型的,传进来的参数是x+0.5f,y+0.5f,这样不会出错吗

    • #11868 Score: 0
      lemon_ling
      Participant

      我认为传参是int型,在insideTriangle函数中计算时需要考虑的位置为(x+0.5, y+0.5)

    • #12094 Score: 0
      shs1992shs
      Participant

      是的,会有问题,最好是在函数内,对x+0.5,不然会被截断,而在内部声明一个Vector2f,输入x+0.5时,会进行隐式转换,转换成float型,就不存在问题。可以写个小函数测试一下

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