Lab 01 — Two Drawings
A cat drawn two ways in p5.js: once with shapes, once with a turtle.
- Shapes → A cat face built from p5 primitives: circles, triangles, arcs, and rectangles.
- Turtle → A turtle that walks a list of coordinates and draws a cat outline. Press R to redraw.
Source code: github.com/DaoTwenty/IAT806-Lab01
Notes
For the turtle drawing, I sketched the cat as lists of points on a grid,
then wrote helpers that turn each pair of points into a heading and a
distance, so the turtle can trace every shape with
setHeading() and forward().