Rotating blue reticle thing
This commit is contained in:
parent
68103ad538
commit
133bb24018
2 changed files with 59 additions and 4 deletions
|
@ -8,7 +8,8 @@
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0 auto;
|
||||||
|
width: 800px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script src="../p5.js"></script>
|
<script src="../p5.js"></script>
|
||||||
|
@ -17,6 +18,7 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<h1>First Local Server</h1>
|
||||||
<main>
|
<main>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -1,7 +1,60 @@
|
||||||
function setup() {
|
class Arc {
|
||||||
// put setup code here
|
constructor(radius, length, speed, weight) {
|
||||||
|
this.size = radius * 2.0;
|
||||||
|
this.length = length;
|
||||||
|
this.speed = speed / weight;
|
||||||
|
this.weight = weight;
|
||||||
|
this.offset = Math.random() * TWO_PI;
|
||||||
|
}
|
||||||
|
|
||||||
|
draw() {
|
||||||
|
stroke('rgba(20%, 50%, 100%, 0.7)');
|
||||||
|
strokeWeight(this.weight);
|
||||||
|
noFill();
|
||||||
|
arc(200, 200, this.size, this.size, this.offset, this.offset + QUARTER_PI);
|
||||||
|
}
|
||||||
|
|
||||||
|
tick() {
|
||||||
|
this.offset += this.speed;
|
||||||
|
if (this.offset > TWO_PI) {
|
||||||
|
this.offset = this.offset - TWO_PI;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let arcsToDraw = [];
|
||||||
|
|
||||||
|
function createArcs() {
|
||||||
|
console.log("Creating Arcs");
|
||||||
|
|
||||||
|
const maximumLenth = PI;
|
||||||
|
const minimumLength = PI / 4;
|
||||||
|
|
||||||
|
arcsToDraw = new Array();
|
||||||
|
let radius = 25;
|
||||||
|
while (arcsToDraw.length < 20) {
|
||||||
|
let length = Math.random() * (maximumLenth - minimumLength) + minimumLength;
|
||||||
|
let speed = Math.random() * 0.05;
|
||||||
|
let weight = Math.random() * (15 - 8) + 8;
|
||||||
|
arcsToDraw.push(new Arc(radius, length, speed, weight));
|
||||||
|
radius += 7.5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function mouseClicked() {
|
||||||
|
createArcs();
|
||||||
|
}
|
||||||
|
|
||||||
|
function setup() {
|
||||||
|
createArcs();
|
||||||
|
createCanvas(400, 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function draw() {
|
function draw() {
|
||||||
// put drawing code here
|
background(240);
|
||||||
|
for (let a of arcsToDraw) {
|
||||||
|
a.draw();
|
||||||
|
a.tick();
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue