------------------------------------------------------------------------------ Add a point to the cell data structure (after cell pointers have been built). This method allocates memory for the links to the cells. (To use this method, make sure points are available and BuildLinks() has been invoked.)
| 1117 | // built). This method allocates memory for the links to the cells. (To |
| 1118 | // use this method, make sure points are available and BuildLinks() has been invoked.) |
| 1119 | vtkIdType vtkPolyData::InsertNextLinkedPoint(int numLinks) |
| 1120 | { |
| 1121 | return static_cast<vtkCellLinks*>(this->Links.Get())->InsertNextPoint(numLinks); |
| 1122 | } |
| 1123 | |
| 1124 | //------------------------------------------------------------------------------ |
| 1125 | // Add a point to the cell data structure (after cell pointers have been |
no test coverage detected