| 270 | } |
| 271 | |
| 272 | void SurfacePointWidget::updatePositionAndRadius_() |
| 273 | { |
| 274 | if ( const MeshTriPoint* triPoint = std::get_if<MeshTriPoint>( ¤tPos_ ) ) |
| 275 | updatePositionAndRadiusMesh_( *triPoint ); |
| 276 | |
| 277 | if ( auto p = findCoords() ) |
| 278 | { |
| 279 | pickSphere_->setCenter( *p ); |
| 280 | setPointRadius_(); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | void SurfacePointWidget::setPointRadius_() |
| 285 | { |
nothing calls this directly
no test coverage detected