(edge_style)
| 75 | |
| 76 | @staticmethod |
| 77 | def from_core_struct(edge_style): |
| 78 | return EdgeStyle(edge_style.style, edge_style.width, edge_style.color) |
| 79 | |
| 80 | def __eq__(self, other): |
| 81 | return (self.style, self.width, self.color) == (other.style, other.width, other.color) |