MCPcopy Create free account
hub / github.com/Kitware/TeleSculptor / decreaseDepthMapPointSize

Method decreaseDepthMapPointSize

gui/WorldView.cxx:1843–1851  ·  view source on GitHub ↗

-----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1841
1842//-----------------------------------------------------------------------------
1843void WorldView::decreaseDepthMapPointSize()
1844{
1845 QTE_D();
1846
1847 float pointSize = d->depthMapActor->GetProperty()->GetPointSize() - 0.5;
1848 d->depthMapActor->GetProperty()->SetPointSize(pointSize < 1 ? 1 : pointSize);
1849
1850 this->render();
1851}
1852
1853//-----------------------------------------------------------------------------
1854void WorldView::render()

Callers

nothing calls this directly

Calls 1

renderMethod · 0.95

Tested by

no test coverage detected