| 37 | using namespace WireEdgeCubicSymmetryAttributeHelper; |
| 38 | |
| 39 | void WireEdgeCubicSymmetryAttribute::compute(const WireNetwork& network) { |
| 40 | Operators ops = get_symmetry_operators( |
| 41 | network.get_dim(), network.center()); |
| 42 | VectorI orbit_labels = get_edge_labels( |
| 43 | network.get_vertices(), network.get_edges(), ops); |
| 44 | m_values = orbit_labels.cast<Float>(); |
| 45 | } |
| 46 |
nothing calls this directly
no test coverage detected