Draws the node label. Optional properties include width, fill and fontsize.
(self)
| 47 | k.pop("string") |
| 48 | return Text(self.string, **k) |
| 49 | def draw(self): |
| 50 | """ Draws the node label. |
| 51 | Optional properties include width, fill and fontsize. |
| 52 | """ |
| 53 | pass |
| 54 | |
| 55 | class Vector(object): |
| 56 | def __init__(self, x=0, y=0): |
no outgoing calls
no test coverage detected