-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HW #24 #54
Comments
Do they need to be removed? I seem to be having trouble with that aspect. |
ParticleSystem ps; void setup(){ ps = new ParticleSystem(new PVector(400,200)); background(255); ps.run(); |
class Confetti extends Particle { super(l); |
class Face extends Particle{ |
class Particle{ Particle(PVector l){ void run(){ void update(){ void display(){ } |
class ParticleSystem{ void addParticle(){ void run(){ p.run(); } |
@Brandonsugar you do not need to delete the objects |
Tab 1;
Tab 2;
Tab 3;
Tab 4;
Tab 5;
|
In this homework we will practice using class inheritance. Use this week's exercise for help.
_Description:_
Just like last week, make your own project! The only requirement is to create at least 3 different variations of the particle object. Look at the example from this week for help.
The text was updated successfully, but these errors were encountered: