| 8 | { |
| 9 | |
| 10 | static auto newCallback( const FoundPointCallback& foundCallback ) |
| 11 | { |
| 12 | return [&foundCallback]( const PointsProjectionResult & found, const Vector3f& foundXfPos, Ball3f & ) |
| 13 | { |
| 14 | foundCallback( found.vId, foundXfPos ); |
| 15 | return Processing::Continue; |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | MRMESH_API void findPointsInBall( const PointCloud& pointCloud, const Ball3f & ball, |
| 20 | const OnPointInBallFound& foundCallback, const AffineXf3f* xf ) |