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

Function ValidateCellId

Common/DataModel/vtkPolyDataInternals.h:205–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

203 }
204
205 static bool ValidateCellId(vtkIdType cellId) noexcept
206 {
207 // is positive, won't truncate:
208 return (
209 (static_cast<vtkTypeUInt64>(cellId) & CELLID_MASK) == static_cast<vtkTypeUInt64>(cellId));
210 }
211
212 void DeepCopy(CellMap* other)
213 {

Callers 2

operator()Method · 0.85
InsertNextCellMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected