gpt4 book ai didi

svg - 我怎样才能知道 svg 二次贝塞尔曲线的峰值点坐标?

转载 作者:行者123 更新时间:2023-12-05 03:19:39 38 4
gpt4 key购买 nike

我正在两点之间创建一个 svg 弧。我有兴趣创建一个稍微弯曲的圆弧并在圆弧的顶点(即曲线改变方向的地方)添加一个 svg 圆元素。

基于一些基本搜索,可以使用二次贝塞尔曲线创建此曲线,我为其指定起点、贝塞尔曲线点和终点(例如 M20 50 Q50 10、100 80)。显然我的值是动态的,所以为了确定我的圆圈 (cx, cy) 的位置,我想知道曲线在哪里达到最大值,因为这与贝塞尔点不同。

有没有办法知道这个点的坐标?我对 svg 还很陌生,所以如果一开始有更好的方法(除了二次贝塞尔曲线?)那也行。

谢谢!

enter image description here

最佳答案

请注意,您不是在寻找“曲线方向”发生变化的点,因为方向在数学中是一个明确定义的概念,表示我们沿着曲线行进的方式。例如,贝塞尔曲线 p1,p2,p3p3,p2,p1 看起来相同,但方向相反。

您正在寻找的是 extremum在与曲线“对齐”的坐标系中。不幸的是,没有一个这样的坐标系,所以你必须选择一个,但我们可以选择一个看起来足够合理的:我们可以通过 realigning the curve 找到“the”点。到 x 轴,然后找到 y 导数为零的点。作为the derivative for a quadratic curve is a straight line ,我们可以almost trivially找到这个 y 值。

const { cos, sin, atan2 } = Math;
function map(v, s1,e1, s2,e2) {
return s2 + (v-s1) * (e2-s2)/(e1-s1);
}

const path = original.getAttribute(`d`);
const terms = path.replace(/[A-Z]/g, ``).split(/\s+/).map(v => parseFloat(v));
const points = [];
for(let i=0, e=terms.length; i<e; i=i+2) points[i/2] = terms.slice(i,i+2);

// Let's do the thing, which we don't actually need to do because for
// quadratic curves it'll turn out we already know at which "t" value
// the axis-aligned extremum can be found. But let's discover that anyway:
(function findExtremum([p1, p2, p3]) {

const [sx, sy] = p1;
const [cx, cy] = p2;
const [ex, ey] = p3;

// In order to realign, we only need to recompute three points.
// The other three are all zero.

const a = atan2(ey-sy, ex-sx);
const newcx = (cx-sx) * cos(-a) - (cy-sy) * sin(-a);
const newcy = (cx-sx) * sin(-a) + (cy-sy) * cos(-a);
const newex = (ex-sx) * cos(-a) - (ey-sy) * sin(-a);
aligned.setAttribute(`d`, `M0 0 Q${newcx} ${newcy} ${newex} 0`);

// If we work out the derivative, we discover we don't need it
// thanks to our translation/rotation step:
//
// const d = [
// [2 * (newcx - 0), 2 * (newcy - 0)],
// [2 * (newex - newcx), 2 * (0 - newcy)],
// ];
//
// Which, when we omit the zeroes, is:
//
// const d = [
// [2 * newcx, 2 * newcy],
// [2 * (newex - newcx), 2 * -newcy],
// ];
//
// We see two y values that are the same, except for the sign,
// and so the zero crossing lies at the midpoint, i.e. at the
// bezier control value t=0.5, and with that knowledge we can
// find the original point:

const t = 0.5;

// This is all we needed, and all the code we've written so far
// turns out to have been irrelevant: for quadratic curves, the
// axis-aligned extremum is *always* at t=0.5, so let's plug
// that into our curves to see the result:

const x = 2 * newcx * (1-t) * t + newex * t**2;
const y = 2 * newcy * (1-t) * t;
extremum.setAttribute(`cx`, x);
extremum.setAttribute(`cy`, y);

// and for our original curve:

const ox = sx * (1-t)**2 + 2 * cx * (1-t) * t + ex * t**2;
const oy = sy * (1-t)**2 + 2 * cy * (1-t) * t + ey * t**2;
point.setAttribute(`cx`, ox);
point.setAttribute(`cy`, oy);

})(points);
svg { border: 1px solid grey; }
p { display: inline-block; height: 120px; vertical-align: 40px; }
<svg width="120" height="100" viewBox="0 0 120 100">
<path id="original" fill="none" stroke="black" d="M20 50 Q50 10 100 80"/>
</svg>

<p>→</p>

<svg width="120" height="100" viewBox="0 0 120 100">
<g transform="translate(20,80)">
<path fill="none" stroke="grey" d="M0 -100L0 200M-100 0L200 0"/>
<path id="aligned" fill="none" stroke="black" d=""/>
<circle id="extremum" cx="0" cy="0" r="2"/>
</g>
</svg>

<p>→</p>

<svg width="120" height="100" viewBox="0 0 120 100">
<path fill="none" stroke="black" d="M20 50 Q50 10 100 80"/>
<circle id="point" cx="0" cy="0" r="2"/>
</svg>

事实上,我们可以发现它是如此微不足道,以至于如果您通读代码,我们甚至不需要这段代码。极值将在 t=0.5 处,这是控制点对曲线影响最大且曲率半径最小的位置。我们可以绕过我们刚刚做的所有事情(但只有现在我们确定我们不需要它!=)并直接计算我们需要的东西:

const path = original.getAttribute(`d`);
const terms = path.replace(/[A-Z]/g, ``).split(/\s+/).map(v => parseFloat(v));
const points = [];
for(let i=0, e=terms.length; i<e; i=i+2) points[i/2] = terms.slice(i,i+2);

// If t=0.5 then (1-t)^2, (1-t)t, and t^2 are all 0.25, so
// we can drastically simplify things even more:
const x = (points[0][0] + 2*points[1][0] + points[2][0])/4;
const y = (points[0][1] + 2*points[1][1] + points[2][1])/4;
point.setAttribute(`cx`, x);
point.setAttribute(`cy`, y);
svg { border: 1px solid grey; }
p { display: inline-block; height: 120px; vertical-align: 40px; }
<svg width="120" height="100" viewBox="0 0 120 100">
<path id="original" fill="none" stroke="black" d="M20 50 Q50 10 100 80"/>
</svg>

<p>→</p>

<svg width="120" height="100" viewBox="0 0 120 100">
<path fill="none" stroke="black" d="M20 50 Q50 10 100 80"/>
<circle id="point" cx="0" cy="0" r="2"/>
</svg>

完成。

关于svg - 我怎样才能知道 svg 二次贝塞尔曲线的峰值点坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73409364/

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