-----------------------------------------------------------------------------
| 285 | |
| 286 | //----------------------------------------------------------------------------- |
| 287 | void DepthMapView::decreasePointSize() |
| 288 | { |
| 289 | QTE_D(); |
| 290 | |
| 291 | float pointSize = d->actor->GetProperty()->GetPointSize() - 0.5; |
| 292 | d->actor->GetProperty()->SetPointSize(pointSize < 1 ? 1 : pointSize); |
| 293 | |
| 294 | this->render(); |
| 295 | } |
| 296 | |
| 297 | //----------------------------------------------------------------------------- |
| 298 | void DepthMapView::render() |