| 231 | } |
| 232 | |
| 233 | void segPoints( Vector3f & VEC, |
| 234 | Vector3f & X, Vector3f & Y, |
| 235 | const Vector3f & P, const Vector3f & A, |
| 236 | const Vector3f & Q, const Vector3f & B) |
| 237 | { |
| 238 | const auto sd = findTwoLineSegmClosestPoints( { P, P + A }, { Q, Q + B } ); |
| 239 | X = sd.a; |
| 240 | Y = sd.b; |
| 241 | VEC = sd.dir; |
| 242 | } |
| 243 | |
| 244 | } // namespace MR |
nothing calls this directly
no test coverage detected