| 366 | } |
| 367 | |
| 368 | static MeshTopology fromTrianglesSeq( const Triangulation & t, const BuildSettings & settings ) |
| 369 | { |
| 370 | MeshTopology res; |
| 371 | addTriangles( res, t, settings ); |
| 372 | return res; |
| 373 | } |
| 374 | |
| 375 | MeshTopology fromDisjointMeshPieces( const Triangulation & t, VertId maxVertId, |
| 376 | const std::vector<MeshPiece> & pieces, |
no test coverage detected