| 12 | #include <cmath> |
| 13 | |
| 14 | ImageScopeRepository::ImageScopeRepository(const std::shared_ptr<AnnotationList>& list) : |
| 15 | Repository(list), |
| 16 | _closingDistance(30.) |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | void ImageScopeRepository::setClosingDistance(const float& closingDistance) { |
| 21 | _closingDistance = closingDistance; |
nothing calls this directly
no outgoing calls
no test coverage detected