Tagged: 

Viewing 4 reply threads
  • Author
    Posts
    • #4841 Score: 0
      Spencor
      Participant

      作业2中 rasterize.cpp 中 //viewport transform 后以下代码的作用不是很清楚。
      for (int i = 0; i < 3; ++i)
      {
      t.setVertex(i, v[i].head<3>());
      t.setVertex(i, v[i].head<3>());
      t.setVertex(i, v[i].head<3>());
      }
      拜托哪位高手解惑以下?

      Attachments:
      You must be logged in to view attached files.
    • #4972 Score: 0
      nuomi
      Participant

      有定义
      void Triangle::setVertex(int ind, Eigen::Vector3f ver) { v[ind] = ver; }

      设置三角形三个顶点

    • #6031 Score: 0
      K
      Participant

      同样疑问,既然设置了循环,只需要写一行就行了。或者去掉循环,写三行不同坐标的。

    • #6631 Score: 0
      dingding
      Participant

      画了两个三角形

    • #6796 Score: 0
      chronoOverFlow
      Participant

      去掉也不会影响程序的运行. 从逻辑看也没有意义, 应该是敲多了两行.

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