Published
Edited
Jul 4, 2020
Fork of My Zdog
Importers
3 stars
Insert cell
Insert cell
Insert cell
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) }
}
}
Insert cell
Zdog = require('zdog@1/dist/zdog.dist.min.js')
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more