gpt4 book ai didi

javascript - PaperJS - 如何沿路径移动并沿路径旋转

转载 作者:行者123 更新时间:2023-11-30 13:59:12 26 4
gpt4 key购买 nike

here 中显示的示例显示如何在 Paperjs 中沿路径移动对象,但如何沿路径正确旋转对象?

在上面链接中显示的示例中,人们建议使用圆圈作为示例。但是一旦变成矩形 new Path.Rectangle(new Point(20,20), new Size(20,20)); 你可以看到它沿着路径移动但实际上并没有旋转路径的方向。

如何计算旋转并将其设置到我的对象?

最佳答案

为了计算旋转,您需要知道矩形位置路径的切向量。
这可以用 path.getTangentAt(offset) 检索方法。
然后,为项目旋转设置动画的简单方法是将 item.applyMatrix 设置为 false,然后为 item.rotation 属性设置动画每一帧。

这是一个sketch演示解决方案。

// Create the rectangle to animate along the path.
// Note that matrix is not applied, this will allow us to easily animate its
// rotation.
var rectangle = new Path.Rectangle({
point: view.center,
size: new Size(100, 200),
strokeColor: 'orange',
applyMatrix: false
});

// Create the path along which the rectangle will be animated.
var path = new Path.Circle({
center: view.center,
radius: 250,
strokeColor: 'blue'
});

// On each frame...
function onFrame(event) {
// ...calculate the time of the animation between 0 and 1...
var slowness = 400;
var time = event.count % slowness / slowness;
// ...and move the rectangle.
updateRectangle(time);
}

function updateRectangle(time) {
// Calculate the offset relatively to the path length.
var offset = time * path.length;
// Get point to position the rectangle.
var point = path.getPointAt(offset);
// Get tangent vector at this point.
var tangent = path.getTangentAt(offset);
// Move rectangle.
rectangle.position = point;
// Rotate rectangle.
rectangle.rotation = tangent.angle;
}

关于javascript - PaperJS - 如何沿路径移动并沿路径旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56667573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com