(self, x1=0, y1=0, x2=50, y2=50, *args, **kwargs)
| 4763 | def attr_y2(self, value): self.attributes['y2'] = str(value) |
| 4764 | |
| 4765 | def __init__(self, x1=0, y1=0, x2=50, y2=50, *args, **kwargs): |
| 4766 | super(SvgLine, self).__init__(*args, **kwargs) |
| 4767 | self.set_coords(x1, y1, x2, y2) |
| 4768 | self.type = 'line' |
| 4769 | |
| 4770 | def set_coords(self, x1, y1, x2, y2): |
| 4771 | self.set_p1(x1, y1) |
nothing calls this directly
no test coverage detected