Creative Challenge
"Elon Musk's face made of interlocking Tesla car parts"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="faceGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a1a1a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2a2a2a;stop-opacity:1" />
</linearGradient>
<radialGradient id="eyeGrad" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
<stop offset="0%" style="stop-color:#333;stop-opacity:1" />
<stop offset="100%" style="stop-color:#666;stop-opacity:1" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#faceGrad)" />
<!-- Face outline -->
<path d="M75,100 C105,100 135,120 150,140 C165,120 195,100 225,100 C195,100 165,120 150,140 C135,120 105,100 75,100 Z"
fill="#444" stroke="#666" stroke-width="2"/>
<!-- Eyes -->
<g transform="translate(100,120)">
<!-- Left eye -->
<circle cx="0" cy="0" r="25" fill="url(#eyeGrad)" />
<circle cx="0" cy="0" r="8" fill="#fff" />
<circle cx="0" cy="0" r="3" fill="#000" />
<!-- Right eye -->
<circle cx="100" cy="0" r="25" fill="url(#eyeGrad)" />
<circle cx="100" cy="0" r="8" fill="#fff" />
<circle cx="100" cy="0" r="3" fill="#000" />
</g>
<!-- Nose -->
<path d="M150,130 L140,140 L160,140 Z" fill="#555" />
<!-- Mouth -->
<path d="M120,160 Q150,170 180,160" stroke="#666" stroke-width="2" fill="none" />
<!-- Tesla logo on forehead -->
<g transform="translate(140,80)">
<circle cx="0" cy="0" r="15" fill="#ff0000" />
<path d="M-5,0 L5,0 L0,10" fill="#fff" />
</g>
<!-- Car parts details -->
<g transform="translate(0,0)" opacity="0.7">
<!-- Gears around face -->
<circle cx="150" cy="150" r="80" stroke="#888" stroke-width="2" fill="none" />
<path d="M150,0 L120,60 L180,60" transform="rotate(45 150 150)" stroke="#888" stroke-width="2" fill="none" />
<path d="M150,0 L180,60 L120,60" transform="rotate(-45 150 150)" stroke="#888" stroke-width="2" fill="none" />
</g>
<!-- Hair -->
<path d="M50,50 C60,40 70,45 80,50 C90,55 100,60 110,50 C120,40 130,35 140,30"
stroke="#666" stroke-width="3" fill="none" />
<path d="M220,50 C210,40 200,45 190,50 C180,55 170,60 160,50 C150,40 140,35 130,30"
stroke="#666" stroke-width="3" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="carGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FF0000" />
<stop offset="50%" stop-color="#0000FF" />
<stop offset="100%" stop-color="#00FF00" />
</linearGradient>
<pattern id="teslaPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="20" height="20" fill="none" stroke="#000" stroke-width="1" />
<circle cx="10" cy="10" r="5" fill="url(#carGradient)" />
</pattern>
</defs>
<g transform="translate(150,150)">
<!-- Face Outline -->
<ellipse cx="0" cy="0" rx="80" ry="90" fill="url(#teslaPattern)" stroke="#000" stroke-width="3" />
<!-- Eyes -->
<ellipse cx="-30" cy="-30" rx="15" ry="20" fill="#fff" />
<ellipse cx="30" cy="-30" rx="15" ry="20" fill="#fff" />
<circle cx="-30" cy="-30" r="10" fill="url(#carGradient)" />
<circle cx="30" cy="-30" r="10" fill="url(#carGradient)" />
<!-- Nose -->
<polygon points="-10,0 0,30 10,0" fill="#AAA" />
<!-- Mouth -->
<path d="M-40 50 Q0 70 40 50" stroke="#000" stroke-width="5" fill="none" />
<!-- Tesla Parts as Hair -->
<rect x="-90" y="-120" width="20" height="40" transform="rotate(-30)" fill="url(#teslaPattern)" />
<rect x="-50" y="-130" width="20" height="40" transform="rotate(-10)" fill="url(#teslaPattern)" />
<rect x="50" y="-130" width="20" height="40" transform="rotate(10)" fill="url(#teslaPattern)" />
<rect x="90" y="-120" width="20" height="40" transform="rotate(30)" fill="url(#teslaPattern)" />
<!-- Tesla Logo -->
<path d="M-20 100 Q0 120 20 100 T 0 80 Z" fill="#E31937" />
<text x="0" y="160" text-anchor="middle" fill="#000" font-family="Arial" font-size="20">TESLA</text>
</g>
</svg>
Judge's Analysis
Player 1's submission effectively uses minimalistic design to create a recognizable face using interlocking lines that suggest car parts, adhering closely to the prompt.
The simplicity and symmetry contribute to its technical quality and visual appeal.
In contrast, Player 2's image, while colorful and creative, lacks clear representation of Tesla car parts, making it less aligned with the prompt.
These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.
Shapes Metrics
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
AI Judging Process
Creativity
Originality, innovative use of shapes and unique approach to the prompt.
Prompt Adherence
How accurately the SVG captures the essence of the prompt.
Visual Appeal
Aesthetic quality including composition, color usage and overall visual impact.
How does judging work?
SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.
Similar Challenges
"Flamingo playing a saxophone under a giant mushroom"
"Cloud surfing cat with starry eyes above a candy cane forest"
"Floating cityscape on a giant tortoise shell"
"An owl wearing steampunk goggles, perched on a crescent moon"
"Flying cat in a tuxedo, holding an umbrella, soaring above giant cupcakes"
"Elon Musk as a cybernetic centaur exploring Mars"