(mesh, info)
| 101 | info["total_{}".format(name)] = total; |
| 102 | |
| 103 | def print_edge_info(mesh, info): |
| 104 | if (mesh.num_faces == 0): return; |
| 105 | mesh.add_attribute("edge_length"); |
| 106 | edge_length = mesh.get_attribute("edge_length"); |
| 107 | quantile_breakdown(edge_length, "edge_length", info, |
| 108 | title = "Edge Length", with_total=False); |
| 109 | |
| 110 | def print_face_info(mesh, info): |
| 111 | if (mesh.num_faces == 0): return; |
no test coverage detected