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

Function Get2DAxes

Common/DataModel/vtkHyperTreeGrid.h:220–225  ·  view source on GitHub ↗

@{ * Return the indices of the two valid dimensions. */

Source from the content-addressed store, hash-verified

218 * Return the indices of the two valid dimensions.
219 */
220 void Get2DAxes(unsigned int& axis1, unsigned int& axis2) const
221 {
222 assert("pre: valid_dim" && this->GetDimension() == 2);
223 axis1 = this->Axis[0];
224 axis2 = this->Axis[1];
225 }
226 ///@}
227
228 ///@{

Callers

nothing calls this directly

Calls 2

assertFunction · 0.50
GetDimensionMethod · 0.45

Tested by

no test coverage detected