Creative Challenge
"An astronaut roasting marshmallows over a volcanic crater on an alien planet."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Gradients -->
<linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#1a0b3a"/>
<stop offset="50%" stop-color="#4e237a"/>
<stop offset="100%" stop-color="#ff6ec7"/>
</linearGradient>
<radialGradient id="lavaGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff76b"/>
<stop offset="40%" stop-color="#ff9a00"/>
<stop offset="70%" stop-color="#ff4600"/>
<stop offset="100%" stop-color="#6b0600"/>
</radialGradient>
<linearGradient id="suitGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cfd8ff"/>
</linearGradient>
<radialGradient id="visorGrad" cx="30%" cy="30%" r="70%">
<stop offset="0%" stop-color="#8ffcff"/>
<stop offset="100%" stop-color="#003a6d"/>
</radialGradient>
<!-- Filters -->
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<filter id="heat" x="-50%" y="-50%" width="200%" height="200%">
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2" result="turb"/>
<feDisplacementMap in2="turb" in="SourceGraphic" scale="4" xChannelSelector="R" yChannelSelector="G"/>
</filter>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Stars -->
<g fill="#ffffff" opacity="0.8">
<circle cx="20" cy="30" r="1"/>
<circle cx="50" cy="60" r="0.8"/>
<circle cx="90" cy="40" r="1.2"/>
<circle cx="130" cy="20" r="1"/>
<circle cx="160" cy="70" r="0.9"/>
<circle cx="200" cy="40" r="1.1"/>
<circle cx="240" cy="30" r="0.7"/>
<circle cx="270" cy="50" r="1"/>
<circle cx="30" cy="90" r="0.8"/>
<circle cx="80" cy="80" r="1"/>
<circle cx="150" cy="100" r="1.1"/>
<circle cx="220" cy="90" r="0.9"/>
</g>
<!-- Alien moons -->
<g fill="#f5d0ff" opacity="0.6">
<circle cx="260" cy="40" r="18"/>
<circle cx="210" cy="15" r="10"/>
</g>
<!-- Ground -->
<path d="M0 200 Q50 180 100 190 T200 195 T300 185 L300 300 L0 300 Z" fill="#5e3d2d"/>
<!-- Crater rim -->
<ellipse cx="185" cy="200" rx="50" ry="18" fill="#3d1e0f"/>
<!-- Lava -->
<ellipse cx="185" cy="200" rx="38" ry="12" fill="url(#lavaGrad)" filter="url(#heat)"/>
<!-- Heat fumes -->
<path d="M175 175 q5 -15 10 0 t10 0" stroke="url(#lavaGrad)" stroke-width="2" fill="none" opacity="0.6" filter="url(#glow)"/>
<path d="M190 165 q5 -18 10 0" stroke="url(#lavaGrad)" stroke-width="2" fill="none" opacity="0.5" filter="url(#glow)"/>
<!-- Astronaut -->
<g transform="translate(80 140)">
<!-- Helmet -->
<circle cx="0" cy="0" r="15" fill="url(#visorGrad)" stroke="#ffffff" stroke-width="3"/>
<!-- Torso -->
<rect x="-10" y="15" width="20" height="25" rx="4" fill="url(#suitGrad)" stroke="#ffffff" stroke-width="2"/>
<!-- Backpack -->
<rect x="-14" y="18" width="28" height="20" rx="2" fill="#b0b8d9" opacity="0.4"/>
<!-- Arms -->
<path d="M-10 25 L-25 35" stroke="url(#suitGrad)" stroke-width="6" stroke-linecap="round"/>
<path d="M10 25 L55 30" stroke="url(#suitGrad)" stroke-width="6" stroke-linecap="round"/>
<!-- Legs -->
<path d="M-5 40 L-5 60" stroke="url(#suitGrad)" stroke-width="7" stroke-linecap="round"/>
<path d="M5 40 L5 60" stroke="url(#suitGrad)" stroke-width="7" stroke-linecap="round"/>
</g>
<!-- Stick and marshmallow -->
<path d="M135 170 L185 190" stroke="#8b5a2b" stroke-width="3" stroke-linecap="round"/>
<rect x="182" y="185" width="8" height="8" rx="2" fill="#ffffff" stroke="#e0e0e0" stroke-width="1" filter="url(#glow)"/>
<line x1="183" y1="187" x2="189" y2="187" stroke="#c0c0c0" stroke-width="0.8"/>
<line x1="183" y1="190" x2="189" y2="190" stroke="#c0c0c0" stroke-width="0.8"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="lavaGlow">
<stop offset="0%" style="stop-color:#fff700;stop-opacity:1" />
<stop offset="30%" style="stop-color:#ff6b00;stop-opacity:1" />
<stop offset="60%" style="stop-color:#ff0000;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a0000;stop-opacity:1" />
</radialGradient>
<linearGradient id="alienSky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a0033;stop-opacity:1" />
<stop offset="50%" style="stop-color:#4a148c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff6f00;stop-opacity:1" />
</linearGradient>
<radialGradient id="helmetShine">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.7" />
<stop offset="50%" style="stop-color:#cce7ff;stop-opacity:0.4" />
<stop offset="100%" style="stop-color:#1976d2;stop-opacity:0.2" />
</radialGradient>
<pattern id="alienGround" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#4a148c" opacity="0.3"/>
<circle cx="15" cy="15" r="1.5" fill="#7b1fa2" opacity="0.4"/>
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Alien Sky -->
<rect width="300" height="300" fill="url(#alienSky)"/>
<!-- Stars -->
<circle cx="50" cy="30" r="1" fill="white" opacity="0.8"/>
<circle cx="120" cy="50" r="0.5" fill="white" opacity="0.6"/>
<circle cx="200" cy="40" r="1" fill="white" opacity="0.9"/>
<circle cx="250" cy="60" r="0.7" fill="white" opacity="0.7"/>
<circle cx="80" cy="70" r="0.5" fill="white" opacity="0.8"/>
<circle cx="270" cy="30" r="0.8" fill="white" opacity="0.6"/>
<!-- Alien Moons/Planets -->
<circle cx="240" cy="50" r="25" fill="#e91e63" opacity="0.7"/>
<path d="M220 50 Q240 45 260 50" fill="none" stroke="#f8bbd0" stroke-width="2" opacity="0.5"/>
<circle cx="60" cy="80" r="15" fill="#00bcd4" opacity="0.6"/>
<!-- Alien Landscape -->
<path d="M0 200 Q50 180 100 190 T200 180 Q250 170 300 185 L300 300 L0 300 Z" fill="#6a1b9a"/>
<path d="M0 200 Q50 180 100 190 T200 180 Q250 170 300 185 L300 300 L0 300 Z" fill="url(#alienGround)"/>
<!-- Weird Alien Rock Formations -->
<path d="M20 180 L25 140 L30 180 Z" fill="#8e24aa"/>
<path d="M250 175 L255 130 L265 135 L270 175 Z" fill="#7b1fa2"/>
<!-- Volcanic Crater -->
<ellipse cx="150" cy="230" rx="70" ry="25" fill="#2e0f00"/>
<ellipse cx="150" cy="230" rx="60" ry="20" fill="url(#lavaGlow)" filter="url(#glow)"/>
<!-- Lava Bubbles -->
<circle cx="140" cy="225" r="5" fill="#fff700" opacity="0.8" filter="url(#glow)">
<animate attributeName="cy" values="225;220;225" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="165" cy="235" r="3" fill="#ff6b00" opacity="0.9" filter="url(#glow)">
<animate attributeName="cy" values="235;230;235" dur="1.5s" repeatCount="indefinite"/>
</circle>
<!-- Astronaut -->
<g transform="translate(80, 150)">
<!-- Backpack -->
<rect x="25" y="10" width="15" height="25" rx="5" fill="#e0e0e0"/>
<!-- Body -->
<ellipse cx="15" cy="30" rx="18" ry="25" fill="#f5f5f5"/>
<!-- Arms -->
<ellipse cx="-5" cy="25" rx="8" ry="20" fill="#f5f5f5" transform="rotate(-30 -5 25)"/>
<ellipse cx="35" cy="25" rx="8" ry="25" fill="#f5f5f5" transform="rotate(45 35 25)"/>
<!-- Legs -->
<ellipse cx="5" cy="50" rx="10" ry="20" fill="#f5f5f5" transform="rotate(-10 5 50)"/>
<ellipse cx="25" cy="50" rx="10" ry="20" fill="#f5f5f5" transform="rotate(10 25 50)"/>
<!-- Helmet -->
<circle cx="15" cy="5" r="18" fill="#1976d2" opacity="0.3"/>
<circle cx="15" cy="5" r="18" fill="url(#helmetShine)"/>
<circle cx="15" cy="5" r="18" fill="none" stroke="#bdbdbd" stroke-width="2"/>
<!-- Helmet Reflection -->
<path d="M5 -5 Q15 0 25 -5" fill="none" stroke="white" stroke-width="1" opacity="0.6"/>
<!-- Marshmallow Stick -->
<line x1="35" y1="20" x2="80" y2="35" stroke="#8d6e63" stroke-width="2"/>
<!-- Marshmallows -->
<rect x="78" y="32" width="8" height="8" rx="2" fill="#fff8e1"/>
<rect x="76" y="30" width="8" height="8" rx="2" fill="#fff3e0" transform="rotate(15 80 34)"/>
<!-- Toasted Side -->
<rect x="78" y="37" width="8" height="3" rx="1" fill="#8d6e63" opacity="0.5"/>
</g>
<!-- Smoke/Steam -->
<ellipse cx="220" cy="220" rx="15" ry="30" fill="white" opacity="0.2">
<animateTransform attributeName="transform" type="translate" values="0,0; 5,-20; 0,-40" dur="3s" repeatCount="indefinite"/>
<animate attributeName="opacity" values="0.2;0.1;0" dur="3s" repeatCount="indefinite"/>
</ellipse>
<!-- Floating Ember -->
<circle cx="180" cy="210" r="2" fill="#ff6b00" filter="url(#glow)">
<animateTransform attributeName="transform" type="translate" values="0,0; 10,-30; 20,-60" dur="4s" repeatCount="indefinite"/>
<animate attributeName="opacity" values="1;0.5;0" dur="4s" repeatCount="indefinite"/>
</circle>
</svg>
Judge's Analysis
Player 2's submission is more visually appealing and creative, with a richer color palette, added planetary and terrain details that enhance the alien setting, and a more dynamic pose for the astronaut.
While Player 1 adheres to the prompt, their composition is simpler and less engaging compared to Player 2's detailed and imaginative execution.
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.