MCPcopy Create free account
hub / github.com/Kitware/VTK / SetPointIds

Method SetPointIds

Common/DataModel/vtkGenericCell.cxx:513–524  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

511
512//------------------------------------------------------------------------------
513void vtkGenericCell::SetPointIds(vtkIdList* pointIds)
514{
515 if (pointIds != this->PointIds)
516 {
517 this->PointIds->Delete();
518 this->PointIds = pointIds;
519 this->PointIds->Register(this);
520 this->Cell->PointIds->Delete();
521 this->Cell->PointIds = pointIds;
522 this->Cell->PointIds->Register(this);
523 }
524}
525VTK_ABI_NAMESPACE_END

Callers 3

SaveTilePointsMethod · 0.45
GetCellMethod · 0.45

Calls 2

DeleteMethod · 0.65
RegisterMethod · 0.45

Tested by

no test coverage detected