gpt4 book ai didi

Javascript - 计算 Kappa

转载 作者:行者123 更新时间:2023-11-27 23:56:52 26 4
gpt4 key购买 nike

当在 HTML5 中绘制椭圆曲线时,Canvas 没有内置功能,您必须缩放,或者自己制作,我见过这个:

function drawEllipse(ctx, x, y, w, h) {
var kappa = .5522848,
ox = (w / 2) * kappa, // control point offset horizontal
oy = (h / 2) * kappa, // control point offset vertical
xe = x + w, // x-end
ye = y + h, // y-end
xm = x + w / 2, // x-middle
ym = y + h / 2; // y-middle

ctx.beginPath();
ctx.moveTo(x, ym);
ctx.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y);
ctx.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym);
ctx.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye);
ctx.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym);
//ctx.closePath(); // not used correctly, see comments (use to close off open path)
ctx.stroke();
}

但是那个“kappa”是从哪里来的呢?怎么算的,是无限数吗(小数点)?

最佳答案

Kappa 是这样计算的:

Kappa

Source

但是,它永远不会产生数学上正确的椭圆。为此,您可以改用这样的方法:

function drawEllipse(ctx, cx, cy, rx, ry) {

var step = 0.01, // resolution of ellipse
a = step, // counter
pi2 = Math.PI * 2 - step; // end angle

/// set start point at angle 0
ctx.moveTo(cx + rx, cy);
for(; a < pi2; a += step) {
ctx.lineTo(cx + rx * Math.cos(a), cy + ry * Math.sin(a));
}
ctx.closePath();
}

ellipse() 方法是 actually a part of the specification 正如 Loktar 在评论中指出的那样,它在 Chrome 中可用,稍后将在其他浏览器中可用。

关于Javascript - 计算 Kappa,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23432808/

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