3

对于绘图应用程序,我将鼠标移动坐标保存到数组中,然后使用 lineTo 绘制它们。结果线不平滑。如何在所有收集的点之间生成一条曲线?

我用谷歌搜索了,但我只找到了 3 个用于绘制线条的函数:对于 2 个样本点,只需使用 lineTo。对于 3 个采样点 quadraticCurveTo,对于 4 个采样点,bezierCurveTo。

(我尝试为数组中的每 4 个点绘制一个 bezierCurveTo ,但这会导致每 4 个样本点出现扭结,而不是连续平滑曲线。)

如何编写一个函数来绘制具有 5 个及以上样本点的平滑曲线?

4

1 回答 1

2

您可以使用基数样条来执行此操作:

这个函数就像这样,点数组排序为[x1, y1, x2, y2, ... xn, yn],[0.0, 1.0] 之间的张力和可选的段数,它决定了每个点之间的分辨率。

这是一个在线演示

UPDATE发布了我的主要实现的错误版本,这是正确的版本 -

结果将是一个新数组,其中包含您迭代的平滑线 -

function getCurvePoints(ptsa, tension, numOfSegments) {

    // use input value if provided, or use a default value   
    tension         =   (tension != 'undefined') ? tension : 0.5;
    numOfSegments   =   numOfSegments   ? numOfSegments : 16;

    var _pts = [], res = [],    // clone array
        x, y,                   // our x,y coords
        t1x, t2x, t1y, t2y,     // tension vectors
        c1, c2, c3, c4,         // cardinal points
        st, t, i;               // steps based on num. of segments

    // clone array so we don't change the original
    _pts = ptsa.slice(0);

    _pts.unshift(pts[1]);           //copy 1. point and insert at beginning
    _pts.unshift(pts[0]);
    _pts.push(pts[pts.length - 2]); //copy last point and append
    _pts.push(pts[pts.length - 1]);

    // ok, lets start..

    // 1. loop goes through point array
    // 2. loop goes through each segment between the two points + one point before and after
    for (i=2; i < (_pts.length - 4); i+=2) {

        // calc tension vectors
        t1x = (_pts[i+2] - _pts[i-2]) * tension;
        t2x = (_pts[i+4] - _pts[i]) * tension;

        t1y = (_pts[i+3] - _pts[i-1]) * tension;
        t2y = (_pts[i+5] - _pts[i+1]) * tension;

        for (t=0; t <= numOfSegments; t++) {

            // calc step
            st = t / numOfSegments;

            // calc cardinals
            c1 =   2 * Math.pow(st, 3)  - 3 * Math.pow(st, 2) + 1; 
            c2 = -(2 * Math.pow(st, 3)) + 3 * Math.pow(st, 2); 
            c3 =       Math.pow(st, 3)  - 2 * Math.pow(st, 2) + st; 
            c4 =       Math.pow(st, 3)  -     Math.pow(st, 2);

            // calc x and y cords with common control vectors
            x = c1 * _pts[i]    + c2 * _pts[i+2] + c3 * t1x + c4 * t2x;
            y = c1 * _pts[i+1]  + c2 * _pts[i+3] + c3 * t1y + c4 * t2y;

            //store points in array
            res.push(x);
            res.push(y);

        }
    }

    return res;
}
于 2013-08-05T21:07:27.157 回答