# encoding: utf-8
# module PyQt6.QtGui
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\PyQt6\QtGui.pyd
# by generator 1.147
# no doc

# imports
import PyQt6.QtCore as __PyQt6_QtCore
import PyQt6.sip as __PyQt6_sip


from .QGradient import QGradient

class QConicalGradient(QGradient):
    """
    QConicalGradient()
    QConicalGradient(center: QPointF, 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: QPointF)
        setCenter(self, x: float, y: float)
        """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass


