PathCubic QML Type

Defines a cubic Bezier curve with two control points. 更多...

导入语句: import QtQuick 2.12

特性

详细描述

The following QML produces the path shown below:

Path {
    startX: 20; startY: 0
    PathCubic {
        x: 180; y: 0
        control1X: -10; control1Y: 90
        control2X: 210; control2Y: 90
    }
}
								

另请参阅 Path , PathQuad , PathLine , PathArc , PathAngleArc , PathCurve ,和 PathSvg .

特性文档编制

control1X : real

Defines the position of the first control point.


control1Y : real

Defines the position of the first control point.


control2X : real

Defines the position of the second control point.


control2Y : real

Defines the position of the second control point.


relativeControl1X : real

Defines the positions of the control points relative to the curve's start.

If both a relative and absolute control position are specified for a control point's axis, the relative position will be used.

Relative and absolute positions can be mixed, for example it is valid to set a relative control1 x and an absolute control1 y.

另请参阅 control1X , control1Y , control2X ,和 control2Y .


relativeControl1Y : real

Defines the positions of the control points relative to the curve's start.

If both a relative and absolute control position are specified for a control point's axis, the relative position will be used.

Relative and absolute positions can be mixed, for example it is valid to set a relative control1 x and an absolute control1 y.

另请参阅 control1X , control1Y , control2X ,和 control2Y .


relativeControl2X : real

Defines the positions of the control points relative to the curve's start.

If both a relative and absolute control position are specified for a control point's axis, the relative position will be used.

Relative and absolute positions can be mixed, for example it is valid to set a relative control1 x and an absolute control1 y.

另请参阅 control1X , control1Y , control2X ,和 control2Y .


relativeControl2Y : real

Defines the positions of the control points relative to the curve's start.

If both a relative and absolute control position are specified for a control point's axis, the relative position will be used.

Relative and absolute positions can be mixed, for example it is valid to set a relative control1 x and an absolute control1 y.

另请参阅 control1X , control1Y , control2X ,和 control2Y .


relativeX : real

Defines the end point of the curve relative to its start.

If both a relative and absolute end position are specified for a single axis, the relative position will be used.

Relative and absolute positions can be mixed, for example it is valid to set a relative x and an absolute y.

另请参阅 x and y .


relativeY : real

Defines the end point of the curve relative to its start.

If both a relative and absolute end position are specified for a single axis, the relative position will be used.

Relative and absolute positions can be mixed, for example it is valid to set a relative x and an absolute y.

另请参阅 x and y .


x : real

Defines the end point of the curve.

另请参阅 relativeX and relativeY .


y : real

Defines the end point of the curve.

另请参阅 relativeX and relativeY .