- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
之前我使用 svg
构建了一个运动路径,但发现在移动设备上的渲染性能不是很好。我决定将运动路径转换为 canvas
,这会给我带来更好的性能。
我选择使用 svg
创建我的 canvas
路径的克隆,这样我就可以使用 getPointAtLength()
和 getTotalLength ()
方法获取采样点对应的x、y值和canvas的长度
路径。
问题是使用 getPointAtLength
采样后返回的值似乎会导致不规则旋转。
我有一种预感,这与我使用 getPointAtLength()
方法沿路径采样的位置差异有关。
如何修复从 atan2
返回的值,使其沿着路径平滑线性旋转?
var canvas = document.body.querySelector('.loader__canvas');
var source = document.body.querySelector('.loader__source');
var ctx = canvas.getContext("2d");
var angle;
var speed = 0.5;
var deltaX;
var deltaY;
var nextCoords;
var prevCoords;
var offset = 0;
var distance = source.getTotalLength();
render();
function render() {
// Reset the loop once offset exceeds the path's distance
if (offset >= distance) {
offset = 1 * speed;
} else {
offset += 1 * speed;
}
// Clear the canvas from all previous operations
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Draw the loop that the object is attached to
ctx.beginPath();
ctx.lineWidth = 10;
ctx.moveTo(250, 250);
ctx.lineTo(250, 300);
ctx.arc(300, 300, 50, Math.PI, -Math.PI / 2, true);
ctx.lineTo(200, 250);
ctx.arc(200, 200, 50, Math.PI / 2, 0);
ctx.lineTo(250, 250);
ctx.strokeStyle = '#ddd';
ctx.stroke();
ctx.closePath();
// Save the current transformation matrix for future reset
ctx.save();
// Calculate coordinates and angle for the object,
// if prevCoords is undefined: assign initial values
prevCoords = nextCoords || source.getPointAtLength(offset);
nextCoords = source.getPointAtLength(offset);
angle = Math.atan2(
(nextCoords.y - prevCoords.y), (nextCoords.x - prevCoords.x)
) + (Math.PI / 2);
// Apply transforms
ctx.translate(nextCoords.x, nextCoords.y);
ctx.rotate(angle);
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore transforms
ctx.restore();
// Loop
requestAnimationFrame(render);
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.loader__canvas {
display: block;
width: 100%;
max-width: 500px;
max-height: 500px;
margin: auto;
border: 1px solid #ccc;
}
.loader__source {
fill: transparent;
stroke: #ddd;
stroke-width: 10;
}
<canvas class="loader__canvas" width="500" height="500">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
<path class="loader__source" d="m250,250v50a50,50,0,1,0,50,-50h-100a50,50,0,1,1,50,-50z" />
</svg>
</canvas>
在Blindman67's answer的帮助和建议下,我结合 prevCoords 上的 %
运算符增加了偏移量。 Math.atan2()
现在似乎工作正常并且沿路径的旋转很平滑。
但是我想知道为什么偏移量为 1 会导致如此大的振荡而偏移量为 10 却不会?
var canvas = document.body.querySelector('.loader__canvas');
var source = document.body.querySelector('.loader__source');
var ctx = canvas.getContext("2d");
var angle;
var speed = 5;
var deltaX;
var deltaY;
var offset = 0;
var nextCoordsPlug;
var prevCoordsPlug;
var nextCoordsSocket;
var prevCoordsSocket;
var distance = source.getTotalLength();
render();
function render() {
// Reset the loop once offset exceeds the path's distance
if (offset >= distance) {
offset = 1 * speed;
} else {
offset += 1 * speed;
}
// Clear the canvas from all previous operations
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.setLineDash([source.getTotalLength() - 50, 50]);
ctx.lineDashOffset = -(offset + 40);
// Draw the loop that the object is attached to
ctx.beginPath();
ctx.lineWidth = 20;
ctx.moveTo(250, 250);
ctx.lineTo(250, 300);
ctx.arc(300, 300, 50, Math.PI, -Math.PI / 2, true);
ctx.lineTo(200, 250);
ctx.arc(200, 200, 50, Math.PI / 2, 0);
ctx.lineTo(250, 250);
ctx.strokeStyle = '#f63';
ctx.stroke();
ctx.closePath();
// Save the current transformation matrix for future reset
ctx.save();
// Calculate coordinates and angle for the object,
// use the remainder to extend the point past the distance
prevCoordsPlug = source.getPointAtLength((offset + 10) % distance);
nextCoordsPlug = source.getPointAtLength(offset);
angle = Math.atan2(
(nextCoordsPlug.y - prevCoordsPlug.y), (nextCoordsPlug.x - prevCoordsPlug.x)
) - (Math.PI / 2);
// Apply transforms
ctx.translate(nextCoordsPlug.x, nextCoordsPlug.y);
ctx.rotate(angle);
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.rect(-12, -20, 8, 20);
ctx.rect(4, -20, 8, 20);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore and save previous transforms
ctx.restore();
ctx.save();
prevCoordsSocket = source.getPointAtLength((offset + 45) % distance);
nextCoordsSocket = source.getPointAtLength((offset + 35) % distance);
angle = Math.atan2(
(nextCoordsSocket.y - prevCoordsSocket.y), (nextCoordsSocket.x - prevCoordsSocket.x)
) + (Math.PI / 2);
// Apply transforms
ctx.translate(nextCoordsSocket.x, nextCoordsSocket.y);
ctx.rotate(angle);
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore transforms
ctx.restore();
// Loop
requestAnimationFrame(render);
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.loader__canvas {
display: block;
width: 100%;
max-width: 500px;
max-height: 500px;
margin: auto;
transform: rotate(-45deg) translateZ(0);
}
.loader__source {
fill: transparent;
stroke: #ddd;
stroke-width: 10;
}
<canvas class="loader__canvas" width="500" height="500">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
<path class="loader__source" d="m250,250v50a50,50,0,1,0,50,-50h-100a50,50,0,1,1,50,-50z" />
</svg>
</canvas>
最佳答案
像素位置
我不确定为什么会这样,尽管我使用了一些有缺陷的逻辑并意外地找到了解决方案。为了解决这个问题,找到距离偏移更远的点。我添加了 4 个像素并获得了之前的位置 prevCoords = source.getPointAtLength((offset + 4) % distance);
我向前看以确保负偏移不会搞乱开始。
即使移动偏移量,方向仍然有点粗糙。所以我为 Angular 添加了一个简单的平滑算法。保留一个单独的值 angleReal
以显示平滑的 Angular 和一个 angleDelta
以平滑运动。有一个 drag
和 acceleration
组件决定了行为。不同的值会影响平滑。如果 drag
的值超过 0.5,平滑将开始振荡(有时效果不错,但在这种情况下不需要)
还有一个问题是 atan2
返回 Angular -Math.PI
到 Math.PI
平滑看到 -Math .PI
和 Math.PI
作为两个不同的 Angular ,但它们是相同的所以我添加了一个测试以确保从 -Math.PI
的过渡Math.PI
没有使对象平滑旋转。
下面是你的代码,我修改了一些位来平滑对象方向。它不是唯一的解决方案,但它是我用于动画的解决方案。
更新
在进一步调查中,我发现函数 getPointAtLength
有问题。
使用以下代码(在您的代码上下文中),我将 getTotalLength
给出的距离与使用 getPointAtLength
var distance = source.getTotalLength(); // get the distance along the path;
var next; // next point
var dist = 0; // the measured distance
var step = 1; // path sample rate
var last = source.getPointAtLength(0); // get the first point
for(var i = step; i < distance; i+= step){ // sample points
next = source.getPointAtLength(i); // get a point at offset i
// get and sum the distance between the two samples
dist += Math.sqrt(Math.pow(next.x-last.x,2)+Math.pow(next.y-last.y,2));
last = next; // move the current sample to the last
}
// sample the last remaining bit
next = source.getPointAtLength(distance);
// add that distance.
dist += Math.sqrt(Math.pow(next.x-last.x,2)+Math.pow(next.y-last.y,2));
// show result
console.log("Measured:"+dist.toFixed(2)+" Given:"+distance.toFixed(2))
1、0.1、0.01采样结果
source.getTotalLength()
给出的距离是 671.31。
人们预计误差会随着采样距离的减少而减少,但它会增加,强烈指向函数“getPointAtLength”中的错误,并会解释您在计算方向时的不准确性。函数 getPointAtLength
没有返回路径上的精确点。
var canvas = document.body.querySelector('.loader__canvas');
var source = document.body.querySelector('.loader__source');
var ctx = canvas.getContext("2d");
var angle;
// Blindman67 change start---------------------------------
var angleReal;
var angleDelta;
var drag = 0.1;
var acceleration = 0.9;
// Blindman67 change end---------------------------------
var speed = 0.5;
var deltaX;
var deltaY;
var nextCoords;
var prevCoords;
var offset = 0;
var distance = source.getTotalLength();
render();
function render() {
// Reset the loop once offset exceeds the path's distance
if (offset >= distance) {
offset = 1 * speed;
} else {
offset += 1 * speed;
}
// Clear the canvas from all previous operations
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Draw the loop that the object is attached to
ctx.beginPath();
ctx.lineWidth = 10;
ctx.moveTo(250, 250);
ctx.lineTo(250, 300);
ctx.arc(300, 300, 50, Math.PI, -Math.PI / 2, true);
ctx.lineTo(200, 250);
ctx.arc(200, 200, 50, Math.PI / 2, 0);
ctx.lineTo(250, 250);
ctx.strokeStyle = '#ddd';
ctx.stroke();
ctx.closePath();
// Save the current transformation matrix for future reset
ctx.save();
// Calculate coordinates and angle for the object,
// if prevCoords is undefined: assign initial values
// Blindman67 change start---------------------------------
// get the offset a larger pixel distance
prevCoords = source.getPointAtLength((offset+4)%distance);
// Blindman67 change end ---------------------------------
nextCoords = source.getPointAtLength(offset);
angle = Math.atan2(
(nextCoords.y - prevCoords.y), (nextCoords.x - prevCoords.x)
) + (Math.PI / 2);
// Blindman67 change start---------------------------------
if(angleDelta === undefined){ // if not set set up init vals
angleDelta = 0;
angleReal = angle;
}
if(Math.abs(angle-angleReal) > Math.PI){
angleReal = angle;
}
// add smoothing to the angle
angleDelta += (angle-angleReal)*acceleration;
angleDelta *= drag;
angleReal += angleDelta;
// Apply transforms
ctx.translate(nextCoords.x, nextCoords.y);
ctx.rotate(angleReal+Math.PI);
// Blindman67 change end ---------------------------------
// Draw path object
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI);
ctx.fillStyle = '#f63';
ctx.fill();
ctx.closePath();
// Restore transforms
ctx.restore();
// Loop
requestAnimationFrame(render);
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.loader__canvas {
display: block;
width: 100%;
max-width: 500px;
max-height: 500px;
margin: auto;
border: 1px solid #ccc;
}
.loader__source {
fill: transparent;
stroke: #ddd;
stroke-width: 10;
}
<canvas class="loader__canvas" width="500" height="500">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
<path class="loader__source" d="m250,250v50a50,50,0,1,0,50,-50h-100a50,50,0,1,1,50,-50z" />
</svg>
</canvas>
关于javascript - Canvas + SVG 路径中的 Atan2 旋转卡顿,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34233288/
我必须做一些需要使用三角函数的计算,尤其是 atan一。代码将在 Atmega328p 上运行,为了效率,我不能使用 float s:我使用的是定点数。因此,我不能使用标准 atan功能。 我有一个函
我一直在谷歌上搜索这个问题的解决方案。我见过多种计算任何 -1 #include double my_atan(double x) { return x - (x*x*x)/3 + (x*
我正在用 JavaScript 编写我的第一个项目。据我了解,Math.atan() 返回一个数字(以弧度表示的 Angular )。但不知何故,它返回了 Nan。 使用console.log(),我
我遇到 Math.atan 返回与输入相同的值的问题。 public double inchToMOA( double in, double range){ double rangeI
这里是一位非常初级的程序员(两周前开始),我目前在使用 Math.atan 时遇到问题。我目前使用 Eclipse IDE,并且一直在尝试找出如何对三角形执行 tan^-1,但目前不起作用。我在控制台
下面的代码演示了 atan 的计算时间可以有很大的不同: #include #include #include #include #include #include double get_
我有以下小程序,它在我的大型项目中重现了一个触发错误: #define _USE_MATH_DEFINES #include #include #define R2D(trig_fn, val)
我在我的代码中得到了这个函数: -(void)printAngle { int width = p2_t.x-cp1_t.x; int height = p2_t.y-cp1_t.y;
我有个小问题我不知道如何在 cobol 中转换我的 ATAN/ASIN/ACOS 函数这是代码: ACCEPT A
我试图在点的 Angular 之间做一些比较,但很快我遇到了一些奇怪的结果。 在这个例子中,我尝试旋转线条,使它们指向中心,但线条的 Angular 似乎超过了它们应该很快的 Angular 。然后,
我正在尝试计算一个实体观看另一个实体时必须观察的角度。 l是第一个实体的位置。 o是另一个实体的位置。 每个实体在 3D 空间中都有一个 3D X、Y 和 Z 坐标。 我目前使用 double ang
这个问题已经有答案了: What is the difference between atan and atan2 in C++? (11 个回答) 已关闭 6 年前。 我有一个问题。 atan 和有
我如何将我的 atan 函数放入 atan2 中?例如 float myAtan2(double a, double b) { float atan2val = //calculate ata
Java Math.atan() 函数是否已知有任何问题?我在我的代码中使用它,由于一些我无法解决的奇怪原因,该函数将在 45 度运动时返回 0,跳转到 45 并保持在 45 直到它达到 63.4 度
我在一些基本的触发方面遇到了一些麻烦。我正在做一些数学作业,我终于厌倦了将直角坐标转换为极坐标,反之亦然,所以我决定编写一个小 Python 程序来帮助我进行转换。但是, Math.atan() 给我
我的公式f=arctan(ImZ/ReZ) 有两种选择: 选项 1 (atan): ImZ=-4.593172163003 ImR=-4.297336384845 >>> z=y/x >>> f1=m
atan 和 atan2 都是反正切函数,返回的都是弧度 对于两点形成的直线,两点分别是 point(x1,y1) 和 point(x2,y2),其斜率对应角度的计算方法可以是:
我有一个 2D 侧视射击游戏,我需要一些新的视角。我目前正在研究瞄准,并且它部分有效: Guzzle 速度已知,重力已知,并且到目标的 x,y 距离也已知。使用 SE 和维基百科上的各种来源,我提出了
我在java编程中使用半正矢公式(使用eclipse)。我的问题是在等式的末尾,我收到一个错误(atan 带下划线),指出“方法 atan(double) 对于 Math 类型未定义”。 我不知道出了
所以我想获得2点之间的度数,但是当我希望它返回180时,它返回0...0、90和270确实有效,但是当它180时它返回0..这是我的代码: Location loc1 = new Location(B
我是一名优秀的程序员,十分优秀!