MCPcopy Index your code
hub / github.com/rawpython/remi / __init__

Method __init__

remi/gui.py:4765–4768  ·  view source on GitHub ↗
(self, x1=0, y1=0, x2=50, y2=50, *args, **kwargs)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 2

set_coordsMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected