| 327 | } |
| 328 | |
| 329 | void RenderOptionsWidget::DecreasePointSize() { |
| 330 | const float kDelta = -100; |
| 331 | model_viewer_widget_->ChangePointSize(kDelta); |
| 332 | } |
| 333 | |
| 334 | void RenderOptionsWidget::IncreaseCameraSize() { |
| 335 | const float kDelta = 100; |
nothing calls this directly
no test coverage detected