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

Method GetCellDimensionsFromPointDimensions

Common/DataModel/vtkStructuredData.h:423–429  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

421
422//------------------------------------------------------------------------------
423inline void vtkStructuredData::GetCellDimensionsFromPointDimensions(
424 const int nodeDims[3], int cellDims[3])
425{
426 cellDims[0] = vtkStructuredData::Max(nodeDims[0] - 1, 0);
427 cellDims[1] = vtkStructuredData::Max(nodeDims[1] - 1, 0);
428 cellDims[2] = vtkStructuredData::Max(nodeDims[2] - 1, 0);
429}
430
431//------------------------------------------------------------------------------
432inline void vtkStructuredData::GetLocalStructuredCoordinates(

Callers

nothing calls this directly

Calls 1

MaxFunction · 0.70

Tested by

no test coverage detected