41 @param colors tuple containing the foreground and background colors |
41 @param colors tuple containing the foreground and background colors |
42 @type tuple of (QColor, QColor) |
42 @type tuple of (QColor, QColor) |
43 @param parent reference to the parent object |
43 @param parent reference to the parent object |
44 @type QGraphicsItem |
44 @type QGraphicsItem |
45 """ |
45 """ |
46 super(E5ArrowItem, self).__init__(parent) |
46 super().__init__(parent) |
47 |
47 |
48 self._origin = QPointF() if origin is None else QPointF(origin) |
48 self._origin = QPointF() if origin is None else QPointF(origin) |
49 self._end = QPointF() if end is None else QPointF(end) |
49 self._end = QPointF() if end is None else QPointF(end) |
50 self._filled = filled |
50 self._filled = filled |
51 self._type = arrowType |
51 self._type = arrowType |