legacy site deprication

This commit is contained in:
=
2026-03-27 14:30:00 +10:00
parent 2869d51a52
commit b5760c5b3f
55 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
// создаем изображение смайлик
// рисуем его относительно точки (0, 0)
function drawSmile(svg) {
let smile = svg.append("g")
.style("stroke", "brown")
.style("stroke-width", 0)
.style("fill", "brown");
for (let t = 0; t <= Math.PI * 6; t += .8) {
let cords = {
x: 50 / 3 * (1 - (t / (Math.PI * 6))) * -Math.sin(t),
y: 50 / 3 * (1 - (t / (Math.PI * 6))) * Math.cos(t)
}
smile.append("circle")
.attr("cx", cords["x"])
.attr("cy", cords["y"])
.attr("r", (1 - (t / (Math.PI * 6))))
.style("fill", "red");
}
for (let t = .4; t <= Math.PI * 6; t += .8) {
let cords = {
x: 50 / 3 * (1 - (t / (Math.PI * 6))) * -Math.sin(t),
y: 50 / 3 * (1 - (t / (Math.PI * 6))) *Math.cos(t)
}
smile.append("circle")
.attr("cx", cords["x"])
.attr("cy", cords["y"])
.attr("r", (1 - (t / (Math.PI * 6))))
.style("fill", "green");
}
return smile
}