| 291 | } |
| 292 | |
| 293 | ContinuousContours orderIntersectionContours( const MeshTopology& topologyA, const MeshTopology& topologyB, const PreciseCollisionResult& intersections ) |
| 294 | { |
| 295 | MR_TIMER; |
| 296 | AccumulativeSet accumulativeSet{ topologyA, topologyB, intersections }; |
| 297 | parallelPrepareLinkedLists( intersections, accumulativeSet ); |
| 298 | return orderIntersectionContoursUsingAccumulativeSet( accumulativeSet, intersections ); |
| 299 | } |
| 300 | |
| 301 | Contours3f extractIntersectionContours( const Mesh& meshA, const Mesh& meshB, const ContinuousContours& orientedContours, |
| 302 | const CoordinateConverters& converters, const AffineXf3f* rigidB2A /*= nullptr */ ) |