我正在尝试使用D3.js使用阿基米德螺旋作为轴在时间轴上绘制数据。
所以我需要的是一个Javascript函数,我传递它
该函数将遍历螺旋弧s * d的距离,并给出x和y笛卡尔坐标(图中的点S,其中s = 10)。螺旋中心的第一个点是0,0。
答案 0 :(得分:3)
感谢你所有的帮助belwood。我尝试绘制你的例子但是当我绘制5个连续点时它有点奇怪(见下图)。
我设法在下面的链接中找到了答案。看起来你很亲密。
Algorithm to solve the points of a evenly-distributed / even-gaps spiral?
我的最终实施基于上面的链接。
function archimedeanSpiral(svg,data,circleMax,padding,steps) {
var d = circleMax+padding;
var arcAxis = [];
var angle = 0;
for(var i=0;i<steps;i++){
var radius = Math.sqrt(i+1);
angle += Math.asin(1/radius);//sin(angle) = opposite/hypothenuse => used asin to get angle
var x = Math.cos(angle)*(radius*d);
var y = Math.sin(angle)*(radius*d);
arcAxis.push({"x":x,"y":y})
}
var lineFunction = d3.svg.line()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; })
.interpolate("cardinal");
svg.append("path")
.attr("d", lineFunction(arcAxis))
.attr("stroke", "gray")
.attr("stroke-width", 5)
.attr("fill", "none");
var circles = svg.selectAll("circle")
.data(arcAxis)
.enter()
.append("circle")
.attr("cx", function (d) { return d.x; })
.attr("cy", function (d) { return d.y; })
.attr("r", 10);
return(arcAxis);
}
答案 1 :(得分:2)
尝试没有伤害:(原谅我的新手javascript)
function spiralPoint(dist, sep, step) {
this.x = 0;
this.y = 0;
var r = dist;
var b = sep / (2 * Math.PI);
var phi = r / b;
for(n = 0; n < step-1; ++n) {
phi += dist / r;
r = b * phi;
}
this.x = r * Math.cos(phi);
this.y = r * Math.sin(phi);
this.print = function() {
console.log(this.x + ', ' + this.y);
};
}
new spiralPoint(1,1,10).print();