Skip to content

获取对象边及边对应的顶点索引_triangle->getpoint


开发环境:


demo解决问题:获取对象边及边对应的顶点索引


prj name: CellEdges

cpp
# include <vtkIdList.h>
# include <vtkNew.h>
# include <vtkPoints.h>
# include <vtkTriangle.h>

int main(int, char*[])
{
  vtkNew<vtkTriangle> triangle;
  triangle->GetPoints()->SetPoint(0, 1.0, 0.0, 0.0);
  triangle->GetPoints()->SetPoint(1, 0.0, 0.0, 0.0);
  triangle->GetPoints()->SetPoint(2, 0.0, 1.0, 0.0);
  triangle->GetPointIds()->SetId(0, 0);
  triangle->GetPointIds()->SetId(1, 1);
  triangle->GetPointIds()->SetId(2, 2);

  std::cout << "The cell has " << triangle->GetNumberOfEdges() << " edges."
            << std::endl;

  for (vtkIdType i = 0; i < triangle->GetNumberOfEdges(); i++)
  {
    vtkCell* edge = triangle->GetEdge(i);

    vtkIdList* pointIdList = edge->GetPointIds();
    std::cout << "Edge " << i << " has " << pointIdList->GetNumberOfIds()
              << " points." << std::endl;

    for (vtkIdType p = 0; p < pointIdList->GetNumberOfIds(); p++)
    {
      std::cout << "Edge " << i << " uses point " << pointIdList->GetId(p)
                << std::endl;
    }
  }

  return EXIT_SUCCESS;
}

基于 VitePress 强力驱动 | 记录技术与生活