Published
Edited
Jul 2, 2018
1 fork
6 stars
Insert cell
Insert cell
Insert cell
Insert cell
spiral3_plot = {
const svg = d3.select(DOM.svg(dimensions[0], dimensions[1]));
svg.append("path")
.attr("d", bezpts_to_svgpath(bezspiral3))
.attr("transform", `translate(${-bounds[0]},${-bounds[2]}) scale(1 -1)`)
.attr("stroke-width", 2).attr("stroke", "black").attr("fill", "none");
return svg.node();
}
Insert cell
spiral3 = t => {
const p = Math.pow;
let a = 2*Math.PI*loops, l;
if (side > 0) {
l = p(2, side);
a *= p(1 - p((1-t), 1/l), l) - p(1 - p(0.5, 1/l), l);
} else {
l = p(2, -side);
a *= - p(1 - p(t, 1/l), l) + p(1 - p(0.5, 1/l), l);

}
return apollo_coords(a, t);
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
spiral1_plot = {
const svg = d3.select(DOM.svg(dimensions[0], dimensions[1]));
svg.append("path")
.attr("d", bezpts_to_svgpath(bezspiral))
.attr("transform", `translate(${-bounds[0]},${-bounds[2]}) scale(1 -1)`)
.attr("stroke-width", 2).attr("stroke", "black").attr("fill", "none");
return svg.node();
}
Insert cell
spiral = t => {
const t_ = 1 - t;
const a = 2*Math.PI * (
t_*a0 + t*t_*t_*b0 +
t*a1 + t*t*t_*b1);
return apollo_coords(a, t);
}
Insert cell
spiral2 = t => {
const tt = 2*(t - 0.5)
const a = 2*Math.PI*(loops*tt + side*tt*tt);
return apollo_coords(a, t);
}
Insert cell
spiral4 = t => {
const ss = Math.pow(2, side*side);
let a = 2*Math.PI*loops;
if (side > 0) {
a *= (Math.pow(t, ss) - Math.pow(.5, ss));
} else {
a *= - (Math.pow((1 - t), ss) - Math.pow(.5, ss));
}
return apollo_coords(a, t);
}
Insert cell
apollo_coords = function apollo_coords(a, t) {
const x = (1-t)*Math.cos(a) + t;
const y = (1-t)*Math.sin(a);
const s = scale * t / (x * x + y * y);
return [s*x, -s*y];
}
Insert cell
bezspiral = bezeval(spiral, [0, 1], bounds, .1)
Insert cell
bezspiral3 = bezeval(spiral3, [0, 1], bounds, .1)
Insert cell
bounds = [-250, 550, -300, 300]
Insert cell
dimensions = [bounds[1]-bounds[0], bounds[3]-bounds[2]]
Insert cell
scale = 300
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more