void drawface() { fontinga = loadFont("Verdana-Bold-16.vlw"); textFont(fontinga); fill (#000000); // color para el titulo text (modo_str [modo_int][12], 20, 30); int radio1 = radio + 3; int arete = int (radio / 8); ellipseMode (RADIUS); noStroke (); fill(#98aab4); ellipse (xmed, ymed, radio1+arete, radio1+arete); stroke (#715847); noFill (); for (int count = 0; count < arete; count++) { for (int counter = 1; counter < 12; counter++) { arc (xmed, ymed, radio1+count, radio1+count, counter*pija-.04, counter*pija+.04); } arc (xmed, ymed, radio1+count, radio1+count, 12*pija-.04, 12*pija); arc (xmed, ymed, radio1+count, radio1+count, 0, .04); } stroke (198); fill(198); ellipse (xmed, ymed, radio1+1, radio1+1); stroke (#876553); noFill (); ellipse(xmed, ymed, radio*.15, radio*.15); fontinga = loadFont("Verdana-14.vlw"); textFont(fontinga); fill (#ffffff); texto ("4a. J", 243, 44, -15); texto ("FUND.", 354, 34, 15); texto ("5a. J", 455, 81, 40); texto ("2a. M", 515, 168, 75); texto ("6a. M", 527, 272, 103); texto ("3a. M", 460, 408, -39); texto ("7a. M", 359, 458, -17); texto ("4a+ (5a-)", 228, 440, 16); texto ("2a. b", 151, 382, 42); texto ("6a. b", 103, 282, 69); texto ("3a. m", 113, 204, -72); texto ("7a. m", 159, 108, -46); }