mirror of
https://github.com/processing/processing4.git
synced 2026-02-08 08:09:32 +01:00
21 lines
373 B
Plaintext
21 lines
373 B
Plaintext
class ParticleChild extends Particle {
|
|
|
|
// We could add variables for only Confetti here if we so
|
|
|
|
ParticleChild(PVector l) {
|
|
super(l);
|
|
}
|
|
|
|
// Inherits update() from parent
|
|
|
|
// Override the display method
|
|
void display() {
|
|
super.display();
|
|
float theta = map(location.x,0,width,0,TWO_PI*2);
|
|
rotate(theta);
|
|
stroke(0);
|
|
line(0,0,50,0);
|
|
}
|
|
}
|
|
|