function makeRhombus(angle, edgeLength, offset) {
const rhombus = new Path2D();
const vx = edgeLength * Math.sin(angle / 2);
const vy = edgeLength * Math.cos(angle / 2);
rhombus.moveTo(0, -offset);
rhombus.lineTo(vx, -vy - offset);
rhombus.lineTo(0, -vy * 2 - offset);
rhombus.lineTo(-vx, -vy - offset);
rhombus.lineTo(0, -offset);
return rhombus;
}