Creative Challenge
"Elon Musk's face composed of interlocking circuit board patterns"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="circuit" patternUnits="userSpaceOnUse" width="20" height="20">
<path d="M0 0h20v20H0z" fill="none" stroke="#2a9d8f" stroke-width="0.5"/>
<circle cx="10" cy="10" r="2" fill="#e9c46a"/>
<path d="M10 2v16M2 10h16" stroke="#2a9d8f" stroke-width="0.5"/>
</pattern>
<linearGradient id="skin" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffddd2"/>
<stop offset="100%" stop-color="#e29578"/>
</linearGradient>
</defs>
<!-- Face shape -->
<path d="M150 50c-55 0-100 45-100 100s45 100 100 100 100-45 100-100-45-100-100-100z" fill="url(#skin)"/>
<path d="M150 50c-55 0-100 45-100 100s45 100 100 100 100-45 100-100-45-100-100-100z" fill="url(#circuit)" fill-opacity="0.3"/>
<!-- Eyes -->
<path d="M120 120c0 10-8 18-18 18s-18-8-18-18 8-18 18-18 18 8 18 18z" fill="#006d77"/>
<path d="M216 120c0 10-8 18-18 18s-18-8-18-18 8-18 18-18 18 8 18 18z" fill="#006d77"/>
<circle cx="102" cy="120" r="6" fill="#83c5be"/>
<circle cx="198" cy="120" r="6" fill="#83c5be"/>
<!-- Circuit details -->
<path d="M90 160q60 40 120 0" fill="none" stroke="#2a9d8f" stroke-width="2"/>
<path d="M70 100q40-30 80 0t80 0" fill="none" stroke="#2a9d8f" stroke-width="2"/>
<!-- Hair -->
<path d="M150 50q-50 0-80 40c40-20 120-20 160 0q-30-40-80-40z" fill="#264653"/>
<path d="M150 50q-50 0-80 40c40-20 120-20 160 0q-30-40-80-40z" fill="url(#circuit)" fill-opacity="0.5"/>
<!-- Additional circuit patterns -->
<circle cx="90" cy="180" r="5" fill="#e76f51"/>
<circle cx="210" cy="180" r="5" fill="#e76f51"/>
<path d="M90 180h120" fill="none" stroke="#2a9d8f" stroke-width="1"/>
<path d="M150 50v30M70 140h30M200 140h30" fill="none" stroke="#2a9d8f" stroke-width="1"/>
<!-- Jawline details -->
<path d="M70 150q80 100 160 0" fill="none" stroke="#2a9d8f" stroke-width="2" fill-opacity="0.5"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Elon Musk's Face -->
<g id="elon-face">
<!-- Skin tone gradient -->
<defs>
<linearGradient id="skin-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFC499" />
<stop offset="50%" stop-color="#FFD7B3" />
<stop offset="100%" stop-color="#F5F5DC" />
</linearGradient>
</defs>
<path d="M 150 50 C 130 70 170 70 150 90 C 130 110 170 110 150 130 C 130 150 170 150 150 170 C 130 190 170 190 150 210" fill="url(#skin-gradient)" />
<!-- Circuit board patterns -->
<g id="circuit-patterns">
<path d="M 120 80 L 180 80 L 180 100 L 120 100 Z" fill="#343A40" />
<path d="M 120 110 L 180 110 L 180 130 L 120 130 Z" fill="#343A40" />
<path d="M 120 140 L 180 140 L 180 160 L 120 160 Z" fill="#343A40" />
<path d="M 120 170 L 180 170 L 180 190 L 120 190 Z" fill="#343A40" />
<path d="M 120 200 L 180 200 L 180 220 L 120 220 Z" fill="#343A40" />
<!-- Microchip pattern -->
<g id="microchip-pattern">
<rect x="140" y="90" width="20" height="20" fill="#8F0A1A" rx="2" />
<rect x="160" y="90" width="20" height="20" fill="#8F0A1A" rx="2" />
<rect x="140" y="110" width="20" height="20" fill="#8F0A1A" rx="2" />
<rect x="160" y="110" width="20" height="20" fill="#8F0A1A" rx="2" />
<rect x="140" y="130" width="20" height="20" fill="#8F0A1A" rx="2" />
<rect x="160" y="130" width="20" height="20" fill="#8F0A1A" rx="2" />
</g>
</g>
<!-- Facial features -->
<g id="facial-features">
<!-- Eyes -->
<circle cx="120" cy="120" r="10" fill="#000" />
<circle cx="180" cy="120" r="10" fill="#000" />
<!-- Nose -->
<path d="M 150 140 L 160 150 L 140 150 Z" fill="#343A40" />
<!-- Mouth -->
<path d="M 120 170 C 130 180 170 180 180 170" fill="#343A40" />
</g>
</g>
</svg>
Judge's Analysis
Player 1's submission effectively combines a face with circuit board patterns, creatively integrating facial features with electronic elements.
The use of grid lines and abstract shapes gives a sense of interconnectedness, aligning well with the prompt.
While Player 2's image is visually appealing, it strays too far from the prompt of depicting a face composed of circuit board patterns.
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
"A clockwork butterfly unveiling a hidden city on its left wing"
"Dancing cactus under a disco ball"
"Cat in a spacesuit playing chess with a ghost"
"A giraffe juggling planets under the ocean"
"A feathered dinosaur with a top hat, sipping tea in a Victorian-style parlor"
"Cat in a comet sipping tea through a straw"