In this assignment, you will write a Processing program that generates a drawing of an x-wing and tie-fighter from Star Wars. Below is an example image, in case you haven’t seen the movies.

You will write a program in Processing that draws a front-view picture of these two spaceships in space. Your program should generate a window that looks very similar to below:

This rendered image must have the following characteristics:
Ultimately, the image does not have to be pixel-for-pixel identical to the example. You may take some creative liberty, but it must be similar and fulfill all of the above requirements.
You should name your code file x_wing_tie_fighter.pde.
You should only use the features of Processing we’ve discussed in class so-far (files using features that we have not covered in lecture will be flagged as cheating).
If you have questions about whether or not a particular feature can/should be used, ask us in Piazza!
Each program file should have a header comment at the top that has roughly the following format:
//
// Author: Student Name
// Description:
// A short description of what this program does!
// Algorithm:
// Describe in plain English the program steps
//
// 5x5 stars
ellipse(...);
It is due on Friday, 9/13/2023, at 11:00pm.
Upload the file described in the spec (1 pde file total) to Gradescope before the deadline. Make sure to name the file exactly as this document specifies. In general, make sure to follow these instructions precicely. If you don’t, we will deduct points!!!