Creative Challenge
"Teapot-shaped spaceship orbiting a giant floating strawberry"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with radial gradient -->
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="75%">
<stop offset="0%" stop-color="#f0e6ff"/>
<stop offset="100%" stop-color="#d0c4f8"/>
</radialGradient>
<!-- Strawberry pattern -->
<radialGradient id="strawberryGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff4d88" />
<stop offset="100%" stop-color="#cc0033" />
</radialGradient>
<pattern id="seedPattern" x="0" y="0" width="6" height="6" patternUnits="userSpaceOnUse">
<circle cx="3" cy="3" r="1" fill="#ffe066" />
</pattern>
<!-- Teapot spaceship gradient -->
<linearGradient id="teapotGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#66d9ff"/>
<stop offset="100%" stop-color="#2e86de"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Giant floating strawberry -->
<g id="strawberry" transform="translate(150, 210)">
<!-- Strawberry body -->
<ellipse cx="0" cy="0" rx="60" ry="40" fill="url(#strawberryGradient)" />
<!-- Strawberry seeds -->
<ellipse cx="-30" cy="-5" rx="2" ry="3" fill="url(#seedPattern)" />
<ellipse cx="-15" cy="5" rx="2" ry="3" fill="url(#seedPattern)" />
<ellipse cx="0" cy="-10" rx="2" ry="3" fill="url(#seedPattern)" />
<ellipse cx="20" cy="-5" rx="2" ry="3" fill="url(#seedPattern)" />
<ellipse cx="10" cy="10" rx="2" ry="3" fill="url(#seedPattern)" />
<ellipse cx="-10" cy="15" rx="2" ry="3" fill="url(#seedPattern)" />
<ellipse cx="30" cy="5" rx="2" ry="3" fill="url(#seedPattern)" />
<!-- Strawberry Leaf Crown -->
<path d="M-40 -20
C -35 -40, 35 -40, 40 -20
Q 30 -10, 20 -15
Q 10 -20, 0 -10
Q -10 -20, -20 -15
Q -30 -10, -40 -20"
fill="#33cc33" />
</g>
<!-- Teapot-shaped spaceship orbiting -->
<g id="spaceship" transform="rotate(-20,120,80)">
<!-- Main body: teapot shape -->
<path d="M120 80
C 130 70, 150 70, 160 80
C 165 90, 155 100, 150 105
L 140 105
C 135 100, 125 90, 120 80 Z"
fill="url(#teapotGradient)" stroke="#1c5d99" stroke-width="1"/>
<!-- Spout -->
<path d="M160 80
C 175 70, 175 90, 160 85"
fill="none" stroke="#1c5d99" stroke-width="2"/>
<!-- Handle -->
<path d="M120 80
C 105 90, 105 110, 120 105"
fill="none" stroke="#1c5d99" stroke-width="2"/>
<!-- Windows details -->
<circle cx="138" cy="92" r="2" fill="#ffffff" />
<circle cx="146" cy="92" r="2" fill="#ffffff" />
<!-- Orbit path (faint circle) -->
<circle cx="150" cy="210" r="90" fill="none" stroke="#ffffff" stroke-dasharray="4,4" opacity="0.3"/>
</g>
<!-- Orbiting movement hint -->
<path d="M150,210
L140,125
Q150,115,160,125
L150,210"
fill="rgba(255,255,255,0.1)"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background stars -->
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#1a0033" />
<stop offset="100%" stop-color="#000011" />
</radialGradient>
<radialGradient id="strawberryGradient" cx="40%" cy="40%" r="60%" fx="30%" fy="30%">
<stop offset="0%" stop-color="#ff5577" />
<stop offset="80%" stop-color="#e51836" />
<stop offset="100%" stop-color="#c80022" />
</radialGradient>
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="4" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter>
<pattern id="seeds" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="2" fill="#ffed97" />
</pattern>
<linearGradient id="teapotMetal" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#e0e0e0" />
<stop offset="50%" stop-color="#b0b0b0" />
<stop offset="100%" stop-color="#d0d0d0" />
</linearGradient>
<linearGradient id="windowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#88ccff" />
<stop offset="100%" stop-color="#3377ff" />
</linearGradient>
<filter id="engineGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter>
</defs>
<!-- Space background -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
<!-- Stars -->
<g id="stars">
<circle cx="20" cy="30" r="1" fill="white" />
<circle cx="50" cy="40" r="0.8" fill="white" />
<circle cx="80" cy="20" r="1.2" fill="white" />
<circle cx="120" cy="50" r="0.7" fill="white" />
<circle cx="170" cy="30" r="1" fill="white" />
<circle cx="200" cy="70" r="0.9" fill="white" />
<circle cx="250" cy="40" r="1.1" fill="white" />
<circle cx="270" cy="90" r="0.8" fill="white" />
<circle cx="30" cy="100" r="1" fill="white" />
<circle cx="70" cy="120" r="0.7" fill="white" />
<circle cx="120" cy="140" r="1.2" fill="white" />
<circle cx="160" cy="170" r="0.9" fill="white" />
<circle cx="240" cy="150" r="1" fill="white" />
<circle cx="280" cy="180" r="0.8" fill="white" />
<circle cx="40" cy="220" r="1.1" fill="white" />
<circle cx="90" cy="250" r="0.7" fill="white" />
<circle cx="140" cy="260" r="1" fill="white" />
<circle cx="190" cy="230" r="0.9" fill="white" />
<circle cx="260" cy="270" r="1.2" fill="white" />
</g>
<!-- Giant strawberry -->
<g id="strawberry" transform="translate(180, 150)">
<path d="M0,-60 C60,-60 100,-20 80,40 C60,100 20,120 0,120 C-20,120 -60,100 -80,40 C-100,-20 -60,-60 0,-60"
fill="url(#strawberryGradient)" />
<path d="M0,-60 C60,-60 100,-20 80,40 C60,100 20,120 0,120 C-20,120 -60,100 -80,40 C-100,-20 -60,-60 0,-60"
fill="url(#seeds)" fill-opacity="0.8" />
<path d="M0,-60 C15,-60 20,-70 0,-75 C-20,-70 -15,-60 0,-60"
fill="#2d9b43" />
<path d="M-5,-65 C0,-68 5,-68 10,-65 L10,-85 C5,-87 0,-87 -5,-85 Z"
fill="#2d9b43" stroke="#1e7e34" stroke-width="1" />
<!-- Strawberry highlights -->
<ellipse cx="-30" cy="0" rx="20" ry="30" fill="white" opacity="0.1" />
<ellipse cx="15" cy="-25" rx="10" ry="15" fill="white" opacity="0.1" />
<!-- Strawberry atmosphere glow -->
<ellipse cx="0" cy="0" rx="95" ry="95" fill="none" stroke="#ff88aa" stroke-width="5" opacity="0.3" filter="url(#glow)" />
</g>
<!-- Teapot spaceship -->
<g id="teapotShip" transform="translate(80, 130) rotate(-20)">
<!-- Teapot body -->
<ellipse cx="0" cy="0" rx="40" ry="25" fill="url(#teapotMetal)" stroke="#888" stroke-width="1" />
<!-- Spout -->
<path d="M35,5 C60,0 70,-15 75,-20 C80,-25 75,-30 70,-30 C65,-30 60,-25 55,-20 C50,-15 40,-5 35,0 Z"
fill="url(#teapotMetal)" stroke="#888" stroke-width="1" />
<!-- Handle -->
<path d="M-35,5 C-45,0 -55,-10 -55,-25 C-55,-35 -50,-40 -45,-40 C-40,-40 -35,-35 -35,-25 C-35,-15 -30,-5 -25,0 Z"
fill="url(#teapotMetal)" stroke="#888" stroke-width="1" />
<!-- Lid -->
<ellipse cx="0" cy="-5" rx="15" ry="10" fill="url(#teapotMetal)" stroke="#888" stroke-width="1" />
<circle cx="0" cy="-15" r="5" fill="url(#teapotMetal)" stroke="#888" stroke-width="1" />
<circle cx="0" cy="-20" r="3" fill="url(#teapotMetal)" stroke="#888" stroke-width="1" />
<!-- Windows -->
<circle cx="-20" cy="-5" r="7" fill="url(#windowGradient)" stroke="#444" stroke-width="1" />
<circle cx="0" cy="0" r="7" fill="url(#windowGradient)" stroke="#444" stroke-width="1" />
<circle cx="20" cy="-5" r="7" fill="url(#windowGradient)" stroke="#444" stroke-width="1" />
<!-- Antenna -->
<line x1="10" y1="-20" x2="15" y2="-30" stroke="#888" stroke-width="2" />
<circle cx="15" cy="-32" r="3" fill="#ff4444" />
<!-- Engine glow -->
<circle cx="-40" cy="0" r="8" fill="#88aaff" opacity="0.8" filter="url(#engineGlow)" />
<!-- Engine details -->
<circle cx="-40" cy="0" r="5" fill="#4466ff" />
<circle cx="-40" cy="0" r="3" fill="#ffffff" />
<!-- Navigation lights -->
<circle cx="40" cy="-5" r="2" fill="#ff0000" opacity="0.8" />
<circle cx="-45" cy="-30" r="2" fill="#00ff00" opacity="0.8" />
</g>
<!-- Orbit path -->
<ellipse cx="180" cy="150" rx="120" ry="70" fill="none" stroke="#aaaaff" stroke-width="1" stroke-dasharray="5,3" opacity="0.5" />
<!-- Ship trail -->
<path d="M50,140 C55,125 65,120 75,120 C100,120 75,135 80,130" fill="none" stroke="#88aaff" stroke-width="3" opacity="0.6" stroke-linecap="round" />
<!-- Distant planets -->
<circle cx="40" cy="40" r="15" fill="#aa77ff" opacity="0.7" />
<circle cx="40" cy="40" r="18" fill="none" stroke="#aa77ff" stroke-width="1" opacity="0.3" />
<circle cx="260" cy="260" r="10" fill="#ffaa44" opacity="0.7" />
<circle cx="260" cy="260" r="13" fill="none" stroke="#ffaa44" stroke-width="1" opacity="0.3" />
</svg>
Judge's Analysis
Player 2's image is more vibrant and visually appealing, capturing a clear teapot-shaped spaceship orbiting a giant and detailed strawberry.
The composition effectively uses outer space elements, adding depth and context.
In contrast, Player 1's image is simplistic and less detailed, with less convincing representation of a spaceship and strawberry.
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
"Rainbow-hued octopus playing chess with a cat on a cloud"
"Octopus in a top hat juggling flaming swords"
"Floating city on a giant turtle's shell, geometric style"
"A giraffe in a trench coat under a streetlight, noir style"