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

Function ValidateCellType

Common/DataModel/vtkPolyDataInternals.h:199–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197 vtkTypeMacro(CellMap, vtkObject);
198
199 static bool ValidateCellType(VTKCellType cellType) noexcept
200 {
201 // 1-9 excluding 8 (VTK_PIXEL):
202 return cellType > 0 && cellType <= 10 && cellType != VTK_PIXEL;
203 }
204
205 static bool ValidateCellId(vtkIdType cellId) noexcept
206 {

Callers 1

InsertNextCellMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected