This is my blog from my first semester at ITP. I have since switched to a Notion blog which you can view here.
Intro to Physical Comp:
Intro to Comp Media:
Week 7 → Iteration with AI
Plants can grow towards light and roots can grow towards water, so I wanted a to show a light and water source as well.
Ideally the user could adjust the postions of the light and water sources, and then hit a button to begin growth and see how the system responds.
My code from the simulation assignment can already grow towards the mouse, so I figured it would be a pretty easy adjustment for AI to replace that input with the light/water source objects instead.
Setting up the environment:
I started by drawing an example landscape in Figma, feeding it to ChatGPT, and asking it to add the functionality for moving the light and water sources around the screen.
This turned out to be very easy for AI to accomplish, and it pretty much nailed it first try.
The user can move the blue circle (representing a water source) anywhere underground, and they can slide the light source (meant to mimic a lightbulb) back and forth on the screen.
I wanted to continue adding features step by step, since I thought the AI was more likely to make mistakes if I tackled too much at once.
I added the drawing of a trellis, again by mocking it up in Figma first and then showing it to ChatGPT. It had some trouble with the placement, and it took some manual adjusting of the x and y coordinates to get it looking how I wanted.
Next I fed it my roots growing simulator, and asked to to adjust the code to look like vines growing upwards towards the light source
This required some more rounds of iteration, but overall AI did a pretty good job adapting it. I had to specify that the vines should stop when they reached the top of the trellis.
I played around with having the vines follow the shape of the trellis as I thought that could be a cool effect, but the AI was not really able to accomplish this.
Interestingly, it changed the look of certain elements during this iteration (the appearance of the bulb for example). Occasionally I would have to ask it to keep the appearance consistent with older versions.
Adding the roots and additional details
I then asked ChatGPT to mirror the vines growing into the ground as roots, and also added the button to start and reset the growth to make it feel like a more complete “simulator.” I’m pretty happy with the results - it definitely looks more utilitarian and “scientific” than it does beautiful, but I actually think that aesthetic works for the purposes of this simulator.
Reflections on using AI for p5.js
Chat GPT was admittedly extremely helpful in implementing features that would have taken me muuuch longer to figure out. Especially for simple, easily-described features, like “Add a button that starts the growth,” using AI is much faster than looking it up on the Reference. I’ve found that for more complicated requests, breaking things down step by step is key.
It does a pretty good job documenting and explaining what is going on, but I did feel pretty reliant on the AI for troubleshooting. It tends to use a lot of variables that can be hard to trace to the source, so it’s often much faster to ask the AI to troubleshoot its own code rather than parsing it myself. This sometimes works out for simpler bugs, but it can be frustrating when you’re asking it to fix a problem over and over again without new results.
I also think AI is much more useful for implementing functionality than for making beautiful creative outputs. I’m sure there’s exceptions to that depending on prompts/starter code, but it tends to default to the simplest possible shapes to represent your requests.