Files
processing4/java/examples/Basics/Objects/CompositeObjects/CompositeObjects.pde
benfry eb64b2d4fc
2011-01-26 19:22:19 +00:00

25 lines
448 B
Plaintext

/**
* Composite Objects
*
* An object can include several other objects. Creating such composite objects
* is a good way to use the principles of modularity and build higher levels of
* abstraction within a program.
*/
EggRing er1, er2;
void setup() {
size(200, 200);
smooth();
er1 = new EggRing(66, 132, 0.1, 66);
er2 = new EggRing(132, 180, 0.05, 132);
}
void draw() {
background(0);
er1.transmit();
er2.transmit();
}