dog = illo => {
const body = new Zdog.Shape({
addTo: illo,
stroke: 50,
path: [{ z: -50 }, { z: 50 }],
color: 'black',
})
const belly = new Zdog.Shape({
addTo: body,
color:'saddlebrown',
stroke: 30,
path: [{ z: -30 }, { z: 30 }],
translate: { y: 10 },
})
const tail = new Zdog.Shape({
addTo: body,
stroke: 15,
color: 'black',
path: [{ y: 0, z: 0 }, { y: 40, z: -15 }],
translate: { z: -62 , y: -15 }
})
const frontLeftLeg = new Zdog.Shape({
addTo: body,
color: 'black',
stroke: 30,
translate: { z: 50, x: -20, y: 20 }
})
const paw = new Zdog.Shape({
addTo: frontLeftLeg,
color: 'saddlebrown',
stroke: 20,
translate: { y: 5, z: 3 }
})
const frontRightLeg = frontLeftLeg.copyGraph({
translate: { z: 50, x: 20, y: 20 }
})
const backLeftLeg = frontLeftLeg.copyGraph({
translate: { z: -50, x: -20, y: 20 }
})
const backRightLeg = frontLeftLeg.copyGraph({
translate: { z: -50, x: 20, y: 20}
})
const head = new Zdog.Shape({
addTo: body,
stroke: 50,
color: 'black',
translate: { z: 60, y: -20}
})
const leftEye = new Zdog.Shape({
addTo: head,
translate: { x: -10, z: 20 },
stroke: 10,
color: 'white',
})
const rightEye = leftEye.copy({
translate: { x: 10, z: 20 },
})
const earAnchor = new Zdog.Anchor({
addTo: head,
rotate: { y: Zdog.TAU/4 },
translate: { y: 15 }
})
const leftEar = new Zdog.Cylinder({
addTo: earAnchor,
diameter: 40,
length: 5,
stroke: false,
color: 'black',
frontFace: 'black',
backface: 'saddlebrown',
rotate: { z: Zdog.TAU/4 },
translate: { z: 20 }
});
const rightEar = new Zdog.Cylinder({
addTo: earAnchor,
diameter: 40,
length: 5,
stroke: false,
color: 'black',
frontFace: 'saddlebrown',
backface: 'black',
rotate: { z: Zdog.TAU/4 },
translate: { z: -20 }
});
const mouth = new Zdog.Shape({
addTo: head,
color: 'black',
stroke: 32,
path: [{ z: 0 }, { z: 15 }],
translate: { y: 15, z: 20 },
})
const jaw = new Zdog.Shape({
addTo: mouth,
color: "saddlebrown",
stroke: 22,
path: [{ z: 0 }, { z: 10 }],
translate: { y: 5, z: 5 },
})
const nose = new Zdog.Shape({
addTo: mouth,
color: "black",
stroke: 15,
path: [{ z: 0 }, { z: 27 }],
translate: { y: -5 }
})
return (frame, dogs) => {
tail.rotate = { z: Zdog.TAU/32 * Math.sin(frame / 5) }
}
}