-----------------------------------------------------------------------------
| 1841 | |
| 1842 | //----------------------------------------------------------------------------- |
| 1843 | void 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 | //----------------------------------------------------------------------------- |
| 1854 | void WorldView::render() |