(support_wires)
| 20 | return network; |
| 21 | |
| 22 | def inflate_supports(support_wires): |
| 23 | thickness = support_wires.get_attribute("thickness"); |
| 24 | |
| 25 | inflator = Inflator(support_wires); |
| 26 | inflator.inflate(thickness, per_vertex_thickness=True); |
| 27 | mesh = inflator.mesh; |
| 28 | return mesh; |
| 29 | |
| 30 | def add_base(support_mesh, print_dir, support_length): |
| 31 | Z_dir = np.array([0.0, 0.0, 1.0]); |
no test coverage detected