Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
15 lines
342 B
QML
15 lines
342 B
QML
import QtQuick 1.0
|
|
|
|
Path {
|
|
startX: 120; startY: 100
|
|
|
|
PathAttribute { name: "scale"; value: 1.0 }
|
|
PathQuad { x: 120; y: 25; controlX: 260; controlY: 75 }
|
|
PathPercent { value: 0.3 }
|
|
PathLine { x: 120; y: 100 }
|
|
PathCubic {
|
|
x: 180; y: 0; control1X: -10; control1Y: 90
|
|
control2X: 210; control2Y: 90
|
|
}
|
|
}
|