| 11 | using namespace PyMesh; |
| 12 | |
| 13 | WireNetwork::Ptr WireTiler::tile_with_guide_bbox( |
| 14 | const VectorF& bbox_min, |
| 15 | const VectorF& bbox_max, |
| 16 | const VectorI& repetitions) { |
| 17 | AABBTiler tiler(m_unit_wire_network, bbox_min, bbox_max, repetitions); |
| 18 | if (m_params) |
| 19 | tiler.with_parameters(m_params); |
| 20 | return tiler.tile(); |
| 21 | } |
| 22 | |
| 23 | WireNetwork::Ptr WireTiler::tile_with_guide_mesh(const MeshPtr mesh) { |
| 24 | MeshTiler tiler(m_unit_wire_network, mesh); |
no test coverage detected