# encoding: utf-8
# module PyQt5.QtGui
# from C:\Programs\Python\Python313\Lib\site-packages\PyQt5\QtGui.pyd
# by generator 1.147
# no doc

# imports
import PyQt5.QtCore as __PyQt5_QtCore
import sip as __sip


from .QGradient import QGradient

class QConicalGradient(QGradient):
    """
    QConicalGradient()
    QConicalGradient(center: Union[QPointF, QPoint], startAngle: float)
    QConicalGradient(cx: float, cy: float, startAngle: float)
    QConicalGradient(a0: QConicalGradient)
    """
    def angle(self): # real signature unknown; restored from __doc__
        """ angle(self) -> float """
        return 0.0

    def center(self): # real signature unknown; restored from __doc__
        """ center(self) -> QPointF """
        pass

    def setAngle(self, angle): # real signature unknown; restored from __doc__
        """ setAngle(self, angle: float) """
        pass

    def setCenter(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        """
        setCenter(self, center: Union[QPointF, QPoint])
        setCenter(self, x: float, y: float)
        """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass


