gpt4 book ai didi

javascript - 如何复制粘贴 Canvas 的旋转部分而不重叠或多个 Canvas ?

转载 作者:行者123 更新时间:2023-12-02 16:42:51 27 4
gpt4 key购买 nike

假设我有一个 Canvas ,在该 Canvas 上我有一个剪辑/路径/绘图,其形状为披萨片(一侧为圆形的三 Angular 形)。我想复制这些切片并将它们放在 Canvas 上,以便它们的点接触。就像我有这些三 Angular 形/切片之一,我想做这个:

enter image description here

披萨的中心位于 Canvas 的中心,如果这样更方便的话。我还可以将切片数量设置为 8,这样 3 次平移/翻转就可以达到目的。

如有必要,多个 Canvas 是可以的,但我认为有一种简单的方法可以做到这一点,但我只是没有想到。

我在这里开始了一些代码(抱歉,它在coffeescript中),但并不多:http://jsbin.com/qobogeponu/1/edit?html,js,output

同样欢迎使用 JS 进行回复。

任何有关如何在轴上翻转图像、旋转图像数据或任何您认为有帮助的线索,我们将不胜感激。感谢您的宝贵时间!

奖励点:我希望所有其他切片都沿着从披萨中心穿过切片中间绘制的轴翻转。

最佳答案

最简单的方法是添加一个圆(完整的弧)和所需的四条线。中风时具有良好的性能。

var ctx = canvas.getContext("2d"),
r = 190,
pi2 = Math.PI*2,
slices = 8,
slice = pi2 / slices;

ctx.translate(200.5, 200.5); // center (+0.5 to make sharper)
ctx.arc(0, 0, r, 0, 2*Math.PI);

for(var i = 0; i < slices*0.5; i++) { // count only 4 lines
ctx.moveTo(r*Math.cos(slice*i), r*Math.sin(slice*i));
ctx.lineTo(-r*Math.cos(slice*i), -r*Math.sin(slice*i));
}

ctx.lineWidth = 8;
ctx.stroke();
<canvas id="canvas" width=400 height=400></canvas>

另一种技术是使用子函数创建单个切片。如果您需要在某个点悬停或单击它,这非常有用,因为您可以重新生成路径并使用 isPointInPath() 来检查鼠标位置是否在内部,并重新着色等。

var ctx = canvas.getContext("2d"),
r = 190,
pi2 = Math.PI*2,
slices = 8,
slice = pi2 / slices;

ctx.beginPath(); // important when redrawing all, or checking for one slice

for(var i = 0; i < slices; i++) drawSlice(i); // all slices added to path

ctx.lineWidth = 8;
ctx.stroke();

// in this demo the function uses global, you can parametrize those if wanted
function drawSlice(index) {
ctx.translate(canvas.width * 0.5 + 0.5,
canvas.height * 0.5 + 0.5); // center (+0.5 to make sharper)
ctx.rotate(index * slice); // rotate accord. slice index
ctx.moveTo(0, 0); // line start in center
ctx.lineTo(r, 0); // to edge
ctx.arc(0, 0, r, 0, slice); // arc angle for one slice
ctx.closePath(); // line back to center and close

ctx.setTransform(1,0,0,1,0,0); // reset all transforms
}

ctx.fillStyle = "gold";

canvas.onmousemove = function(e) {

var r = canvas.getBoundingClientRect(), // correct the mouse pos
x = e.clientX - r.left,
y = e.clientY - r.top;

for(var i = 0; i < slices; i++) { // check each slice
ctx.beginPath(); // we need each single slice
drawSlice(i); // add the slice to path
if (ctx.isPointInPath(x, y)) { // inside the path?
ctx.fill(); // fill/stroke for demo
ctx.stroke();
}
}
};
<canvas id="canvas" width=400 height=400></canvas>

请注意,使用后一种技术时,边缘会过度绘制两次,这可能会产生更硬的边缘。您需要跳过一条边来避免这种情况。我把它作为练习留给 OP 来做。 :)

更新:现在,关于翻转、镜像等。然而,这通常被称为经典的高性能技术,因为无论如何你都需要使用路径、描边绘制至少四分之一的圆它等,有一个镜像的基础(因为我们无法访问位图的低级实现,也不能随意编译代码,使其在GPU上工作等等......)问题就变成了如果翻转副本确实更快,因为这将需要来自 JS 的额外调用,而不是在编译代码中使用浏览器内部进行抚摸。

但是可以做到:

var ctx = canvas.getContext("2d"),
r = 190,
pi2 = Math.PI * 2,
slices = 8,
slice = pi2 / slices;

ctx.beginPath(); // important when redrawing all, or checking for one slice

for (var i = 0; i < 2; i++) drawSlice(i); // all slices added to path

ctx.lineJoin = "round"; // avoid "spikes"
ctx.lineWidth = 8;
ctx.stroke();

ctx.scale(-1, 1); // mirror canvas hor.
ctx.translate(-canvas.width, 0); // move origin to other edge
ctx.drawImage(canvas, 0, 0); // draw hortizontal mirror
ctx.setTransform(1,0,0,1,0,0); // reset matrix

ctx.scale(1, -1); // mirror canvas vert.
ctx.translate(0, -canvas.height); // move origin to other edge
ctx.drawImage(canvas, 0, 0); // draw hortizontal mirror


// in this demo the function uses global, you can parametrize those if wanted
function drawSlice(index) {
ctx.translate(canvas.width * 0.5 + 0.5,
canvas.height * 0.5 + 0.5); // center (+0.5 to make sharper)
ctx.rotate(index * slice); // rotate accord. slice index
ctx.moveTo(0, 0); // line start in center
ctx.lineTo(r, 0); // to edge
ctx.arc(0, 0, r, 0, slice); // arc angle for one slice
ctx.closePath(); // line back to center and close

ctx.setTransform(1, 0, 0, 1, 0, 0); // reset all transforms
}
<canvas id="canvas" width=400 height=400></canvas>

可以使用setTransform()在一行中设置缩放和平移,但我将它们分开显示,以便更容易看到发生了什么。

关于javascript - 如何复制粘贴 Canvas 的旋转部分而不重叠或多个 Canvas ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27349603/

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