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

Method IsGeometryLinear

Testing/GenericBridge/vtkBridgeCell.cxx:167–172  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Does the cell have no higher-order interpolation for geometry? \post definition: result==(GetGeometryOrder()==1)

Source from the content-addressed store, hash-verified

165// Does the cell have no higher-order interpolation for geometry?
166// \post definition: result==(GetGeometryOrder()==1)
167int vtkBridgeCell::IsGeometryLinear()
168{
169 int result = this->Cell->IsLinear();
170 assert("post: definition" && result == (GetGeometryOrder() == 1));
171 return result;
172}
173
174//------------------------------------------------------------------------------
175// Description:

Callers 3

IsAttributeLinearMethod · 0.95
GetErrorMethod · 0.45

Calls 2

assertFunction · 0.50
IsLinearMethod · 0.45

Tested by

no test coverage detected