Difference between revisions of "User:Objectz/Pringles Logo (Old)"
(Created page with "<br><center><asy> // background fill((0,0)--(201,0)--(201,-251)--(0,-251)--cycle,white); // face dot((55,-42), p=invisible+2bp); // This dot marks the start of arc 1. dot((1...") |
|||
Line 102: | Line 102: | ||
I was on hiatus for a pretty long time for making this logo. A new Pringles Logo came out, so I decided to stop working on this project and I started working on the new logo on April 5, 2021. | I was on hiatus for a pretty long time for making this logo. A new Pringles Logo came out, so I decided to stop working on this project and I started working on the new logo on April 5, 2021. | ||
+ | |||
+ | ==See Also== | ||
+ | * [https://artofproblemsolving.com/community/c1283341_objectzs_asymptote_tutorials ObjectZ's Asymptote Tutorials] | ||
+ | * [https://artofproblemsolving.com/community/c67h1322978_test_asymptote Where I first posted the old Pringles Logo] | ||
+ | * [https://www.pringles.com/us/home.html Pringles] |
Latest revision as of 13:06, 6 April 2021
![[asy] // background fill((0,0)--(201,0)--(201,-251)--(0,-251)--cycle,white); // face dot((55,-42), p=invisible+2bp); // This dot marks the start of arc 1. dot((101,-28), p=invisible+2bp); // This dot marks the midpoint of arc 1. dot((147,-42), p=invisible+2bp); // This dot marks the end of arc 1. // may adjust width for these curves draw((147,-42)..(160,-69)..(147,-97),linewidth(3)); // Bezier curve 1 draw((147,-97)..(138,-104)..(129,-109),linewidth(3)); // Bezier curve 2 // arcs for face draw(arc((101,-110.5),82.5,55,125),black+linewidth(3)); // arc 1 // other dots for face dot((101,-110.5), p=invisible+2bp); // center of arc 1 dot((160,-69), p=invisible+2bp); // eyes draw((74,-45)--(75,-42)--(77,-40)--(79,-40)--(82,-43)--(82,-50)--(80,-52)--(78,-52)--(76,-50)--(75,-48)--cycle,black); fill((74,-45)--(75,-42)--(77,-40)--(79,-40)--(82,-43)--(82,-50)--(80,-52)--(78,-52)--(76,-50)--(75,-48)--cycle,cmyk(0,18,0,87)); fill((78,-45)--(78,-43)--(80,-43)--(81,-45)--(80,-46)--(79,-46)--cycle,white); draw((121,-42)--(120,-45)--(119,-46)--(117,-46)--(115,-44)--(115,-43)--(114,-41)--(114,-39)--(115,-37)--(116,-36)--(117,-36)--(119,-37)--(120,-39)--(120,-40)--cycle,black); fill((121,-42)--(120,-45)--(119,-46)--(117,-46)--(115,-44)--(115,-43)--(114,-41)--(114,-39)--(115,-37)--(116,-36)--(117,-36)--(119,-37)--(120,-39)--(120,-40)--cycle,cmyk(0,18,0,87)); fill((118,-41)--(117,-40)--(117,-38)--(118,-38)--(119,-39)--(119,-40)--(118,-41)--cycle,white); // bowtie draw((129,-109)--(128,-109)--(128,-104)--(126,-102)--(122,-104)--(119,-106)--(118,-107)--(106,-115)--(100,-116)--(85,-111)--(77,-111)--(76,-112)--(76,-116)--(77,-123)--(78,-145)--(82,-142)--(88,-139)--(97,-132)--(103,-126)--(105,-125)--(108,-125)--(110,-126)--(121,-128)--(126,-128)--(129,-128)--cycle,black); fill((129,-109)--(128,-109)--(128,-104)--(126,-102)--(122,-104)--(119,-106)--(118,-107)--(106,-115)--(100,-116)--(85,-111)--(77,-111)--(76,-112)--(76,-116)--(77,-123)--(78,-145)--(82,-142)--(88,-139)--(97,-132)--(103,-126)--(105,-125)--(108,-125)--(110,-126)--(121,-128)--(126,-128)--(129,-128)--cycle,cmyk(0,18,0,87)); // color fill((124,-125)--(124,-107)--(120,-109)--(118,-111)--(112,-114)--(110,-116)--(106,-118)--(100,-118)--(96,-117)--(81,-114)--(82,-135)--(84,-137)--(88,-135)--(93,-130)--(95,-129)--(100,-124)--(102,-123)--(104,-121)--(109,-121)--(121,-125)--cycle,cmyk(0,88,85,10)); // still unfinished with the bowtie... draw((82,-118)--(83,-120)--(84,-125)--(85,-132)--(85,-135)--(84,-135)--(83,-134)--(82,-120)--cycle,cmyk(0,68,77,5)); // just used this command so the shape would show fill((82,-118)--(83,-120)--(84,-125)--(85,-132)--(85,-135)--(84,-135)--(83,-134)--(82,-120)--cycle,cmyk(0,68,77,5)); // m(o)ustache // hair // Bezier curves draw((98,-25)..(107,-12)..(116,-11)); // Bezier curve 3 draw((97.5,-25)..(106.5,-12)..(115.5,-11)); // Bezier curve 4 draw((97,-25)..(106,-12)..(115,-11)); // Bezier curve 5 dot((107,-12), p=invisible+2bp); draw((116,-11)--(117,-12)--cycle,black); // connects Bezier curve 3 with Bezier curve 6 draw((117,-12)..(110,-13)..(103,-25)); // Bezier curve 6 dot((110,-13), p=invisible+2bp); draw((98,-25)--(98,-26)--(103,-26)--(103,-25)); fill((98,-25)..(107,-12)..(116,-11)--(117,-12)..(110,-13)..(103,-25)--(103,-26)--(98,-26)--(98,-25)--cycle,cmyk(0,40,86,40)); draw((98,-25)..(107,-12)..(116,-11)); // Bezier curve 7 draw((97.5,-25)..(106.5,-12)..(115.5,-11)); // Bezier curve 8 draw((97,-25)..(106,-12)..(115,-11)); // Bezier curve 9 dot((107,-12), p=invisible+2bp); draw((116,-11)--(117,-12)--cycle,black); // connects Bezier curve 7 with Bezier curve 10 draw((117,-12)..(110,-13)..(103,-25)); // Bezier curve 10 dot((110,-13), p=invisible+2bp); draw((98,-25)--(98,-26)--(103,-26)--(103,-25)); [/asy]](http://latex.artofproblemsolving.com/2/7/1/271572aeb4e1937ccc89d7384a31f34e502c2da3.png)
Contents
[hide]Pringles Logo (old)
I worked on the Pringles Logo with Asymptote, and it was never finished.
More Information
Starting Off
Step 1
I copied an image of the old Pringles Logo into MSPaint on October 5, 2020.
Step 2
I used the pipette tool to find the colors.
Step 3
I marked the coordinates of the intersection points on the image.
Why I stopped making this logo
I was on hiatus for a pretty long time for making this logo. A new Pringles Logo came out, so I decided to stop working on this project and I started working on the new logo on April 5, 2021.