MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / tile_with_guide_bbox

Method tile_with_guide_bbox

tools/Wires/Tiler/WireTiler.cpp:13–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11using namespace PyMesh;
12
13WireNetwork::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
23WireNetwork::Ptr WireTiler::tile_with_guide_mesh(const MeshPtr mesh) {
24 MeshTiler tiler(m_unit_wire_network, mesh);

Callers 2

tile_with_guide_bboxMethod · 0.95
tileMethod · 0.45

Calls 2

with_parametersMethod · 0.45
tileMethod · 0.45

Tested by

no test coverage detected