Creative Challenge
"A cat's face made of swirling autumn leaves"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="leafGradient1" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FF8C00"/>
<stop offset="100%" stop-color="#FFD700"/>
</linearGradient>
<linearGradient id="leafGradient2" x1="1" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#DC143C"/>
<stop offset="100%" stop-color="#FF4500"/>
</linearGradient>
<radialGradient id="faceGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fffacd"/>
<stop offset="100%" stop-color="#deb887"/>
</radialGradient>
<pattern id="leafPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="rgba(255,255,255,0.3)" />
</pattern>
</defs>
<!-- Cat face background shape made of swirling autumn leaves -->
<g id="cat-face" transform="translate(150,150)">
<!-- Left ear -->
<path d="M -90 -80 C -120 -130, -140 -70, -100 -40 C -80 -20, -60 -30, -90 -80" fill="url(#leafGradient1)" stroke="brown" stroke-width="1"/>
<!-- Right ear -->
<path d="M 90 -80 C 120 -130, 140 -70, 100 -40 C 80 -20, 60 -30, 90 -80" fill="url(#leafGradient2)" stroke="brown" stroke-width="1"/>
<!-- Face main circle -->
<circle cx="0" cy="0" r="70" fill="url(#faceGrad)" stroke="#8B4513" stroke-width="2"/>
<!-- Left eye -->
<path d="M -30 -10 C -35 -20, -25 -25, -30 -10" fill="none" stroke="#333" stroke-width="2"/>
<circle cx="-30" cy="-10" r="3" fill="#333"/>
<!-- Right eye -->
<path d="M 30 -10 C 35 -20, 25 -25, 30 -10" fill="none" stroke="#333" stroke-width="2"/>
<circle cx="30" cy="-10" r="3" fill="#333"/>
<!-- Nose -->
<path d="M 0 0 C -5 5, 5 5, 0 0" fill="#D2691E"/>
<!-- Whiskers left -->
<path d="M -40 0 C -70 0, -70 10, -40 10" fill="none" stroke="#8B4513" stroke-width="1"/>
<path d="M -40 5 C -70 5, -70 15, -40 15" fill="none" stroke="#8B4513" stroke-width="1"/>
<!-- Whiskers right -->
<path d="M 40 0 C 70 0, 70 10, 40 10" fill="none" stroke="#8B4513" stroke-width="1"/>
<path d="M 40 5 C 70 5, 70 15, 40 15" fill="none" stroke="#8B4513" stroke-width="1"/>
<!-- Swirling autumn leaves overlay on face -->
<g transform="rotate(-20)">
<path d="M -60 -40 Q -50 -60, -30 -45 Q -10 -30, -40 -10 Q -70 0, -60 -40" fill="url(#leafGradient1)" stroke="darkorange" stroke-width="0.5"/>
</g>
<g transform="rotate(25)">
<path d="M 40 -50 Q 50 -70, 70 -50 Q 90 -30, 60 -20 Q 40 -10, 40 -50" fill="url(#leafGradient2)" stroke="orangered" stroke-width="0.5"/>
</g>
<g transform="rotate(10)">
<path d="M -20 30 Q 0 50, 20 30 Q 30 10, 10 0 Q -10 10, -20 30" fill="url(#leafGradient1)" stroke="sienna" stroke-width="0.5"/>
</g>
</g>
<!-- Additional swirling leaves around the cat face for effect -->
<g id="leaf-swirls">
<path d="M 50 250 Q 75 220, 100 250 T 150 250" fill="none" stroke="url(#leafGradient2)" stroke-width="4" stroke-linecap="round"/>
<path d="M 250 50 Q 220 75, 250 100 T 250 150" fill="none" stroke="url(#leafGradient1)" stroke-width="4" stroke-linecap="round"/>
<path d="M 20 50 Q 40 30, 60 50 T 100 50" fill="none" stroke="url(#leafGradient2)" stroke-width="4" stroke-linecap="round"/>
</g>
<!-- Decorative texture overlay using pattern -->
<rect x="0" y="0" width="300" height="300" fill="url(#leafPattern)" opacity="0.2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="faceGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ff9966;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff6b39;stop-opacity:1" />
</radialGradient>
<pattern id="leafPattern" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse">
<path d="M100,100 L120,90 Q130,85 140,80 L145,75 Q150,70 145,65 L135,60 Q130,55 125,50 L120,45 Q115,40 110,35 L105,30 Q100,25 95,27 L90,30 Q85,35 80,40 L75,45 Q70,50 65,55 L60,60 Q55,65 50,70 L45,75 Q40,80 35,85 L30,90 Q25,95 20,100 L25,105 Q30,110 35,115 L40,120 Q45,125 50,130 L55,135 Q60,140 65,145 L70,150 Q75,155 80,160 L85,165 Q90,170 95,175 L100,180 Q105,175 110,170 L115,165 Q120,160 125,155 L130,150 Q135,145 140,140 L145,135 Q150,130 145,125 L135,120 Q130,115 125,110 L120,105 Q115,100 110,95 L105,90 Q100,85 95,80 L90,75 Q85,70 80,65 L75,60 Q70,55 65,50 L60,45 Q55,40 50,35 L45,30 Q40,25 35,20 L30,15 Q25,10 20,5 L15,10 Q10,15 5,20 L0,25" fill="url(#leafColors)"/>
</pattern>
<linearGradient id="leafColors" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff6b39;stop-opacity:1" />
<stop offset="33%" style="stop-color:#ff8e53;stop-opacity:1" />
<stop offset="66%" style="stop-color:#ffae41;stop-opacity:1" />
<stop offset="100%" style="stop-color:#d47125;stop-opacity:1" />
</linearGradient>
</defs>
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="100" fill="url(#faceGrad)" />
<circle cx="-40" cy="-30" r="15" fill="white">
<animate attributeName="r" from="15" to="16" dur="0.5s" repeatCount="indefinite" />
</circle>
<circle cx="40" cy="-30" r="15" fill="white">
<animate attributeName="r" from="15" to="16" dur="0.5s" repeatCount="indefinite" />
</circle>
<circle cx="-40" cy="-30" r="8" fill="#2c1810" />
<circle cx="40" cy="-30" r="8" fill="#2c1810" />
<ellipse cx="0" cy="30" rx="20" ry="15" fill="#ff8e53" />
<path d="M-60,-50 Q-70,-60 -80,-55 L-85,-50 Q-90,-45 -85,-40 L-80,-35 Q-70,-30 -60,-35 L-55,-30 Q-50,-25 -45,-25 L-40,-30 Q-35,-35 -30,-35 L-25,-25 Q-20,-20 -15,-20 L-10,-15 Q0,-10 10,-15 L15,-20 Q20,-25 25,-30 L30,-35 Q35,-40 40,-35 L45,-30 Q50,-25 55,-25 L60,-30 Q65,-35 70,-30 L75,-25 Q80,-20 70,-15 L65,-10 Q60,-5 55,-10 L50,-15 Q45,-20 40,-25 L35,-30 Q30,-35 25,-30 L20,-25 Q15,-20 10,-15 L5,-10 Q0,-5 -5,-10 L-10,-15 Q-15,-20 -20,-25 L-25,-30 Q-30,-35 -35,-30 L-40,-25 Q-45,-20 -40,-15 L-35,-10 Q-30,-5 -25,-10 L-20,-15 Q-15,-20 -10,-15 L-5,-10 Q0,-5 5,-10 L10,-15 Q15,-20 20,-15 L25,-10 Q30,-5 35,-10 L40,-15 Q45,-20 50,-15 L55,-10 Q60,-5 65,-10 L70,-15 Q75,-20 80,-15 L85,-10 Q90,-5 85,-0 L80,5 Q75,10 70,5 L65,0 Q60,-5 55,0 L50,5 Q45,10 40,5 L35,0 Q30,-5 25,0 L20,5 Q15,10 10,5 L5,0 Q0,-5 -5,0 L-10,5 Q-15,10 -10,15 L-5,10 Q0,15 5,10 L10,15 Q15,20 20,15 L25,10 Q30,15 35,10 L40,15 Q45,20 50,15 L55,10 Q60,15 65,10 L70,15 Q75,20 80,15 L85,10 Q90,15 85,20" fill="none" stroke="#2c1810" stroke-width="2" />
</g>
</svg>
Judge's Analysis
Player 1's submission creatively uses autumn leaf shapes and colors to form distinct facial features of a cat, adhering closely to the prompt.
The swirling leaves are well-integrated into the composition, enhancing visual appeal.
Player 2's image lacks clear representation of autumn leaves and cat features, making it less aligned with the theme.
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 cat juggling planets in space"
"Cyclone of colorful musical notes over a calm, sleeping city"
"Giraffe on roller skates juggling flamingos under a starlit sky"
"Penguins in space, bouncing on colorful, floating trampolines"
"Shoe with a glowing city skyline inside"
"A neon koi fish swimming in a digital circuit pond"