QML中的PathView是否可用于插值?

时间:2013-02-15 12:47:05

标签: javascript qml

我很想知道PathView如何使用PathLine元素来形成自己?

1 个答案:

答案 0 :(得分:0)

它基于QPainterPath:http://doc.qt.digia.com/stable/qpainterpath.html

PathLine,PathQuad等组合成一个QPainterPath,可以通过QPainterPath :: pointAtPercent()在路径的任意点给出一个位置。

实际实现缓存了许多要点以加快查找速度。在QtQuick 2.0中,返回的点是两个最近的缓存点的插值。