The QPainterPath.Element class specifies the position and type of a subpath.
Once a PySide.QtGui.QPainterPath object is constructed, subpaths like lines and curves can be added to the path (creating QPainterPath.LineToElement and QPainterPath.CurveToElement components).
The lines and curves stretch from the currentPosition() to the position passed as argument. The currentPosition() of the PySide.QtGui.QPainterPath object is always the end position of the last subpath that was added (or the initial start point). The moveTo() function can be used to move the currentPosition() without adding a line or curve, creating a QPainterPath.MoveToElement component.
See also
Parameters: | Element – PySide.QtGui.QPainterPath::Element |
---|
Return type: | PySide.QtCore.bool |
---|
Returns true if the element is a curve, otherwise returns false.
See also
type QPainterPath.CurveToElement
Return type: | PySide.QtCore.bool |
---|
Returns true if the element is a line, otherwise returns false.
See also
type QPainterPath.LineToElement
Return type: | PySide.QtCore.bool |
---|
Returns true if the element is moving the current position, otherwise returns false.
See also
type QPainterPath.MoveToElement
Parameters: | e – PySide.QtGui.QPainterPath::Element |
---|---|
Return type: | PySide.QtCore.bool |
Returns true if this element is not equal to other ; otherwise returns false.
See also
PySide.QtGui.QPainterPath::Element.operator==()
Parameters: | e – PySide.QtGui.QPainterPath::Element |
---|---|
Return type: | PySide.QtCore.bool |
Returns true if this element is equal to other ; otherwise returns false.
See also
PySide.QtGui.QPainterPath::Element.operator!=()