MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / top

Method top

tools/MeshUtils/IndexHeap.h:42–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40 }
41
42 size_t top() const {
43 assert(!m_indices.empty());
44 assert(m_indices.front() < m_data.size());
45 return m_indices.front();
46 }
47
48 T top_value() const {
49 return m_data[top()];

Callers 5

getBoundaryBlurMatrixMethod · 0.80
triangulate_chainMethod · 0.80
collapseMethod · 0.80
TEST_FFunction · 0.80

Calls 2

emptyMethod · 0.45
sizeMethod · 0.45

Tested by 1

TEST_FFunction · 0.64