mini changes
This commit is contained in:
parent
eeb1beaea3
commit
2655d15bc9
2 changed files with 5 additions and 11 deletions
10
sketch.js
10
sketch.js
|
@ -118,8 +118,8 @@ function draw_faces(radius) {
|
|||
push();
|
||||
strokeWeight(2);
|
||||
stroke(0x00);
|
||||
fill(0xbf, 0x7f);
|
||||
for ([p1, p2, p3] of faces) {
|
||||
fill(0xbf, 0x7f);
|
||||
beginShape(TRIANGLES);
|
||||
vertex(p1.x * radius, p1.y * radius, p1.z * radius);
|
||||
vertex(p2.x * radius, p2.y * radius, p2.z * radius);
|
||||
|
@ -155,13 +155,7 @@ function make_charges(n) {
|
|||
if (i === 0) {
|
||||
position = createVector(0, -1, 0);
|
||||
} else {
|
||||
const lat = random(-TAU / 4, TAU / 4);
|
||||
const lon = random(0, TAU);
|
||||
position = createVector(
|
||||
cos(lat) * cos(lon),
|
||||
sin(lat),
|
||||
cos(lat) * sin(lon),
|
||||
);
|
||||
position = p5.Vector.random3D();
|
||||
}
|
||||
charges.push({
|
||||
position: position,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue