#include "PythonQtWrapper_QConicalGradient.h" #include #include #include #include #include #include #include #include #include QConicalGradient* PythonQtWrapper_QConicalGradient::new_QConicalGradient() { return new QConicalGradient(); } QConicalGradient* PythonQtWrapper_QConicalGradient::new_QConicalGradient(const QPointF& center, qreal startAngle) { return new QConicalGradient(center, startAngle); } QConicalGradient* PythonQtWrapper_QConicalGradient::new_QConicalGradient(qreal cx, qreal cy, qreal startAngle) { return new QConicalGradient(cx, cy, startAngle); } void PythonQtWrapper_QConicalGradient::setAngle(QConicalGradient* theWrappedObject, qreal angle) { theWrappedObject->setAngle(angle); } void PythonQtWrapper_QConicalGradient::setCenter(QConicalGradient* theWrappedObject, qreal x, qreal y) { theWrappedObject->setCenter(x, y); } void PythonQtWrapper_QConicalGradient::setCenter(QConicalGradient* theWrappedObject, const QPointF& center) { theWrappedObject->setCenter(center); } qreal PythonQtWrapper_QConicalGradient::angle(QConicalGradient* theWrappedObject) const { return theWrappedObject->angle(); } QPointF PythonQtWrapper_QConicalGradient::center(QConicalGradient* theWrappedObject) const { return theWrappedObject->center(); }