Creative Challenge
"A flying cat wearing a UFO as a hat, hovering above candy mountains"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient -->
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
<stop offset="0" style="stop-color:#8A2BE2;stop-opacity:1" />
<stop offset="1" style="stop-color:#E6D8AD;stop-opacity:1" />
</linearGradient>
<linearGradient id="candyGradient1" x1="0" y1="0" x2="100" y2="100">
<stop offset="0" style="stop-color:#FF69B4;stop-opacity:1" />
<stop offset="1" style="stop-color:#FFB6C1;stop-opacity:1" />
</linearGradient>
<linearGradient id="candyGradient2" x1="0" y1="0" x2="100" y2="100">
<stop offset="0" style="stop-color:#98FB98;stop-opacity:1" />
<stop offset="1" style="stop-color:#90EE90;stop-opacity:1" />
</linearGradient>
<linearGradient id="candyGradient3" x1="0" y1="0" x2="100" y2="100">
<stop offset="0" style="stop-color:#DAA520;stop-opacity:1" />
<stop offset="1" style="stop-color:#F4A460;stop-opacity:1" />
</linearGradient>
<path id="star" d="M50,0 L59.67,54.93 L85.49,33.67 L75.56,44.91 L100,30 L92.5,57.87 L50,70 L7.5,57.87 L24.44,44.91 L14.51,33.67 L40.33,54.93 L50,70 L50,0 Z"/>
<linearGradient id="ufoGradient" x1="0" y1="0" x2="0" y2="100">
<stop offset="0" style="stop-color:#A9A9A9;stop-opacity:1" />
<stop offset="1" style="stop-color:#808080;stop-opacity:1" />
</linearGradient>
<linearGradient id="glow" x1="0" y1="0" x2="100" y2="100">
<stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.8" />
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)"/>
<!-- Candy mountains -->
<g transform="translate(20,200)">
<path d="M0,0 Q100,50 200,0 Q300,50 400,0 Q200,150 0,300" fill="url(#candyGradient1)"/>
<path d="M50,0 Q150,40 250,0 Q350,40 450,0 Q250,150 50,300" fill="url(#candyGradient2)"/>
<path d="M100,0 Q200,30 300,0 Q400,30 500,0 Q300,120 100,300" fill="url(#candyGradient3)"/>
</g>
<!-- Flying cat -->
<g transform="translate(150,150)" opacity="0.9">
<!-- UFO hat -->
<g transform="translate(-50,-100)">
<circle cx="50" cy="50" r="40" fill="url(#ufoGradient)"/>
<path d="M50,10 L70,50 H30 L50,10" fill="#666"/>
<circle cx="50" cy="20" r="15" fill="url(#glow)"/>
<path d="M50,35 L55,45 L65,40 L50,35 L45,45 L50,40" fill="#666"/>
</g>
<!-- Cat body -->
<path d="M0,0 Q50,40 100,0 Q150,40 200,0 Q200,60 100,100 Q50,60 0,100 L0,0" fill="#FFF">
<animateTransform attributeName="transform" type="rotate" from="0 100 100" to="360 100 100" dur="4s" repeatCount="indefinite"/>
</path>
<path d="M50,20 Q70,30 90,20 Q110,30 130,20 Q100,10 90,0 L50,20" fill="#FFF"/>
<!-- Face -->
<circle cx="100" cy="60" r="40" fill="#FFF"/>
<circle cx="90" cy="50" r="15" fill="#000"/>
<circle cx="110" cy="50" r="15" fill="#000"/>
<path d="M90,70 Q100,75 110,70" stroke="#000" stroke-width="2" fill="none"/>
<!-- Ears -->
<path d="M20,20 L40,0 L60,20" fill="#FFF"/>
<path d="M180,20 L160,0 L140,20" fill="#FFF"/>
<!-- Tail -->
<path d="M100,100 Q120,110 140,100 L140,80 L120,90 L100,80" fill="#FFF"/>
</g>
<!-- Stars and particles -->
<g transform="translate(0,0)" opacity="0.6">
<use xlink:href="#star" transform="translate(50,50) rotate(30) scale(0.5)"/>
<use xlink:href="#star" transform="translate(200,80) rotate(-20) scale(0.8)"/>
<use xlink:href="#star" transform="translate(250,40) rotate(10) scale(0.6)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Sky Gradient -->
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#70c5f0"/>
<stop offset="100%" stop-color="#ffd1dc"/>
</linearGradient>
<!-- UFO Gradient -->
<radialGradient id="ufoGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#cccccc"/>
<stop offset="100%" stop-color="#666666"/>
</radialGradient>
<!-- Candy Mountain Gradient -->
<linearGradient id="mountainGradient1" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff9a9e"/>
<stop offset="100%" stop-color="#fecfef"/>
</linearGradient>
<linearGradient id="mountainGradient2" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#a1c4fd"/>
<stop offset="100%" stop-color="#c2e9fb"/>
</linearGradient>
<linearGradient id="mountainGradient3" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#fbc2eb"/>
<stop offset="100%" stop-color="#a6c1ee"/>
</linearGradient>
<!-- Candy Patterns -->
<pattern id="candyStripe" patternUnits="userSpaceOnUse" width="10" height="10">
<path d="M0,5 L10,5" stroke="#ffffff" stroke-width="2"/>
</pattern>
</defs>
<!-- Sky Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Candy Mountains -->
<g id="mountains">
<polygon points="50,250 150,100 250,250" fill="url(#mountainGradient1)" />
<polygon points="80,250 150,130 220,250" fill="url(#mountainGradient2)" />
<polygon points="110,250 150,160 190,250" fill="url(#mountainGradient3)" />
<!-- Adding candy details -->
<circle cx="120" cy="220" r="5" fill="#ff6ec7" />
<circle cx="180" cy="200" r="5" fill="#a4f9c8" />
<circle cx="160" cy="230" r="5" fill="#ffe066" />
<rect x="140" y="240" width="20" height="5" fill="url(#candyStripe)" />
</g>
<!-- Flying Cat -->
<g id="flyingCat" transform="translate(150, 150)">
<!-- Cat Body -->
<ellipse cx="0" cy="0" rx="20" ry="12" fill="#ffe0bd" />
<!-- Cat Head -->
<circle cx="0" cy="-15" r="8" fill="#ffe0bd" />
<!-- Ears -->
<polygon points="-5,-19 -3,-22 -1,-19" fill="#ffe0bd"/>
<polygon points="5,-19 3,-22 1,-19" fill="#ffe0bd"/>
<!-- Eyes -->
<circle cx="-3.5" cy="-16.5" r="1.5" fill="#000"/>
<circle cx="3.5" cy="-16.5" r="1.5" fill="#000"/>
<!-- Whiskers -->
<line x1="-5" y1="-14" x2="-10, -14" stroke="#000" stroke-width="0.5"/>
<line x1="-5" y1="-12" x2="-10, -11" stroke="#000" stroke-width="0.5"/>
<line x1="-5" y1="-16" x2="-10, -17" stroke="#000" stroke-width="0.5"/>
<line x1="5" y1="-14" x2="10, -14" stroke="#000" stroke-width="0.5"/>
<line x1="5" y1="-12" x2="10, -11" stroke="#000" stroke-width="0.5"/>
<line x1="5" y1="-16" x2="10, -17" stroke="#000" stroke-width="0.5"/>
<!-- UFO Hat -->
<g id="ufoHat" transform="translate(0, -20)">
<!-- Dome -->
<ellipse cx="0" cy="0" rx="12" ry="4" fill="url(#ufoGradient)" stroke="#ffffff" stroke-width="0.5"/>
<!-- Lights -->
<g fill="#ffeb3b" opacity="0.8">
<circle cx="-6" cy="0" r="1.5"/>
<circle cx="-3" cy="0" r="1.5"/>
<circle cx="0" cy="0" r="1.5"/>
<circle cx="3" cy="0" r="1.5"/>
<circle cx="6" cy="0" r="1.5"/>
</g>
<!-- Shine effect -->
<path d="M-12,0 Q0,-6 12,0" stroke="url(#skyGradient)" stroke-width="2" fill="none" opacity="0.5"/>
</g>
<!-- Hovering beams -->
<g id="beams" opacity="0.6">
<path d="M-8,12 Q-10,20 -5,25 Q0,20 5,25 Q10,20 8,12" fill="url(#candyStripe)"/>
<path d="M-6,14 Q-9,22 -4,27 Q1,22 6,27 Q11,22 9,14" fill="url(#candyStripe)" />
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the whimsical concept more effectively with a clear depiction of the cat wearing a UFO as a hat and the candy mountain elements.
The use of vibrant colors and geometric shapes adds to the visual appeal and creativity.
In contrast, Player 1's image fails to load, making it impossible to evaluate against the criteria.
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
"Umbrella growing from a teacup"
"A neon jellyfish orbiting a giant silver apple under a starry sky"
"Flying fish with balloon wings over a cityscape"
"Astronaut penguin juggling planets in space"
"Surreal clock with melting numbers and flying teacup"
"Tomato moon cheese cityscape under a sunflower sun"