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

Method GetDimension

Testing/GenericBridge/vtkBridgeCell.cxx:137–142  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Topological dimension of the current cell. \post valid_result: result>=0 && result<=3

Source from the content-addressed store, hash-verified

135// Topological dimension of the current cell.
136// \post valid_result: result>=0 && result<=3
137int vtkBridgeCell::GetDimension()
138{
139 int result = this->Cell->GetCellDimension();
140 assert("post: valid_result" && (result >= 0) && (result <= 3));
141 return result;
142}
143
144//------------------------------------------------------------------------------
145// Description:

Callers 10

GetNumberOfBoundariesMethod · 0.95
CountEdgeNeighborsMethod · 0.95
FindClosestBoundaryMethod · 0.95
IsFaceOnBoundaryMethod · 0.95
IsOnBoundaryMethod · 0.95
GetFaceArrayMethod · 0.95
GetEdgeArrayMethod · 0.95

Calls 2

assertFunction · 0.50
GetCellDimensionMethod · 0.45

Tested by

no test coverage detected