User:Piphi/Asymptote/Adidas


[asy] /**  * Adidas  *  * Made by piphi  *   * For more information go to the link below.  * https://artofproblemsolving.com/wiki/index.php/User:Piphi/Asymptote/Adidas  */  picture stripes = new picture;  path mr = (380,737)..(479,474)..(380,212); path ml = (380,737)..(282,474)..(380,212);  path lr = (5,737-147)..(64,737-160)..(327,737-521); path ll = (5,737-147)..(17,737-244)..(327,737-521);  path rl = (380+375,737-147)..(380+(380-64),737-160)..(380+(380-327),737-521); path rr = (380+(380-327),737-521)..(380+(380-17),737-244)..(380+375,737-147);  fill(mr--ml--cycle); fill(lr--ll--cycle); fill(rr--rl--cycle);  fill(stripes, (5,422)--(755,422)--(755,394)--(5,394)--cycle, white); fill(stripes, (5,365)--(755,365)--(755,395)--(5,395)--cycle); fill(stripes, (5,365)--(755,365)--(755,334)--(5,334)--cycle, white); fill(stripes, (5,335)--(755,335)--(755,307)--(5,307)--cycle); fill(stripes, (5,307)--(755,307)--(755,279)--(5,279)--cycle, white);  clip(stripes, ll--rr--cycle);  add(stripes); [/asy]

This is the original Adidas Logo. The drawing consists of three ellipse like shapes and six stripes, 3 of the black and 3 of them white. I had to have the stripes in a separate picture in order to clip the image correctly.

Adidas

See Also