C

PathQuad QML 类型

定义具有控制点的二次 Bezier 曲线。 更多...

导入语句import QtQuick
Qt Quick Ultralite 1.8

属性

详细说明

以下 QML 生成的路径如下所示

import QtQuick
import QtQuick.Shapes
Rectangle {
    width: 300
    height: 300
    Shape {
        ShapePath {
            strokeColor: "black"
            startX: 0; startY: 0
            PathQuad { x: 200; y: 0; controlX: 100; controlY: 150 }
        }
    }
}

注意:要导入 QtQuick.Shapes,您必须将 Qul::Shapes 模块链接到您的项目中。更多信息,请参阅 Qt Quick Ultralite Shapes QML 类型

另请参阅:PathPathCubicPathLinePathArcPathSvg

属性说明

controlX : real

controlY : real

定义控制点的位置。


x : real

y : real

定义曲线的终点。


在本节中的某些 Qt 许可下提供。
了解更多。