【发布时间】:2022-01-06 23:20:24
【问题描述】:
我正在制作一个小动画,其中主广场不断旋转。现在我想给它添加一条线索,所以我在网上搜索并观看了Coding Train 的视频。然后我尝试旋转粒子,但是当我尝试这个时,一切看起来都很糟糕。我知道您可以使用 rotate() 函数在 p5 中旋转事物,但首先您必须使用 translate(),这会破坏一切。
我已经使用了这些功能,但正如我之前提到的那样,一切都会中断。我想问你是否有任何其他方法可以使这些粒子在它们的中心旋转,这不会破坏一切。
这是我的代码:
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB, 255);
document.oncontextmenu = function() {
return false;
}
}
let a = 0;
let hue = 0;
let w = 100;
let h = 100;
let history = [];
function draw() {
background(36);
let v = createVector(mouseX, mouseY);
history.push(v);
if (history.length > 100) {
history.splice(0, 1);
}
push()
noStroke()
for (let i = 0; i < history.length; i++) {
// THE ROTATION SHOULD BE HERE:
let pos = history[i];
fill((hue + i), 255, 255)
rect(pos.x - w / 2, pos.y - h / 2, i, i)
}
pop()
push()
noStroke();
translate(mouseX, mouseY);
rotate(a);
fill(hue, 255, 255)
rect(0 - w / 2, 0 - h / 2, w, h);
pop()
a += 1 / 120;
hue += 1 / 5;
if (hue >= 255) {
hue = 0;
}
}
html,
body {
margin: 0;
padding: 0;
}
canvas {
display: block;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sketch</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.sound.min.js"></script>
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>
【问题讨论】:
标签: javascript animation p5.js