added fin

This commit is contained in:
Daniel Kauss Serna 2026-03-11 18:38:19 +01:00
parent 1f6bc8ae68
commit 1c2a3f6ac2

View file

@ -230,6 +230,18 @@ function draw() {
drawPoints(leg4.getPoints(), legSizes);
drawPoints(bodyPoints, bodySizes);
let p1 = bodyPoints[4].pos;
let p2 = bodyPoints[6].pos;
let p3 = bodyPoints[8].pos;
let p4 = bodyPoints[10].pos;
push();
// noStroke();
fill(243, 158, 189);
bezier(p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y);
pop();
// line(p1.x, p1.y, p4.x, p4.y);
drawGills(bodyPoints[2], 1);
drawGills(bodyPoints[2], -1);