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

Method GetNumberOfPoints

Testing/GenericBridge/vtkBridgeDataSet.cxx:128–137  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Description: Number of points composing the dataset. See NewPointIterator for more details. \post positive_result: result>=0

Source from the content-addressed store, hash-verified

126// details.
127// \post positive_result: result>=0
128vtkIdType vtkBridgeDataSet::GetNumberOfPoints()
129{
130 vtkIdType result = 0;
131 if (this->Implementation)
132 {
133 result = this->Implementation->GetNumberOfPoints();
134 }
135 assert("post: positive_result" && result >= 0);
136 return result;
137}
138
139//------------------------------------------------------------------------------
140// Description:

Callers 1

GetEstimatedSizeMethod · 0.95

Calls 1

assertFunction · 0.50

Tested by

no test coverage detected