Modify a text file: $/old/x124a-bam.pde
$/old/x124a-bam.pde
// Exercise x124a: draw some shapes. // B.A.Martin:'20124 size( 640, 480 ); background( 255, 255, 0 ); text( "Shapes and colors", 10, 10 ); fill( 255, 0, 255 ); // Magenta rect( 50,50, 30,80 ); fill( 0, 255, 0 ); // Green stroke( 255, 0, 255); // Cyan ellipse( 100,100, 60,40 ); // ++++++