-----------------------------------------------------------------------------
| 274 | |
| 275 | //----------------------------------------------------------------------------- |
| 276 | void DepthMapView::increasePointSize() |
| 277 | { |
| 278 | QTE_D(); |
| 279 | |
| 280 | float pointSize = d->actor->GetProperty()->GetPointSize(); |
| 281 | d->actor->GetProperty()->SetPointSize(pointSize + 0.5); |
| 282 | |
| 283 | this->render(); |
| 284 | } |
| 285 | |
| 286 | //----------------------------------------------------------------------------- |
| 287 | void DepthMapView::decreasePointSize() |