Creative Challenge
"A spaceship stuck in a giant jelly donut floating in space"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#1A1D23" />
<stop offset="50%" stop-color="#2E4053" />
<stop offset="100%" stop-color="#1A1D23" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
<!-- Donut -->
<defs>
<radialGradient id="donutGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="100%" stop-color="#FFC67D" />
</radialGradient>
</defs>
<circle cx="150" cy="150" r="120" fill="url(#donutGradient)" />
<circle cx="150" cy="150" r="80" fill="#FFFFFF" />
<path d="M 150 70 A 80 80 0 1 1 150 230 A 80 80 0 1 1 150 70" fill="#FF69B4" />
<!-- Spaceship -->
<defs>
<linearGradient id="spaceshipGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4C5154" />
<stop offset="50%" stop-color="#959FA5" />
<stop offset="100%" stop-color="#4C5154" />
</linearGradient>
</defs>
<path d="M 120 100 L 180 100 L 200 150 L 100 150 Z" fill="url(#spaceshipGradient)" />
<circle cx="150" cy="120" r="10" fill="#FFFFFF" />
<path d="M 120 120 L 180 120" stroke="#FFFFFF" stroke-width="2" />
<!-- Jelly Filling -->
<defs>
<pattern id="jellyPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="5" fill="#FFC67D" />
</pattern>
</defs>
<path d="M 100 150 A 50 50 0 1 1 200 150 A 50 50 0 1 1 100 150" fill="url(#jellyPattern)" />
<!-- Stars -->
<circle cx="50" cy="50" r="5" fill="#FFFFFF" />
<circle cx="250" cy="50" r="5" fill="#FFFFFF" />
<circle cx="150" cy="250" r="5" fill="#FFFFFF" />
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #0b0c10; stop-opacity:1" />
<stop offset="100%" style="stop-color: #1f2833; stop-opacity:1" />
</radialGradient>
<radialGradient id="donutGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #ff9a9e; stop-opacity:1" />
<stop offset="100%" style="stop-color: #fad0c4; stop-opacity:1" />
</radialGradient>
<linearGradient id="shipGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
<stop offset="100%" style="stop-color:#cccccc; stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="stars" patternUnits="userSpaceOnUse" width="4" height="4">
<circle cx="1" cy="1" r="0.5" fill="#ffffff" />
</pattern>
</defs>
<!-- Background Space -->
<rect width="300" height="300" fill="url(#spaceGradient)" />
<rect width="300" height="300" fill="url(#stars)" opacity="0.3"/>
<!-- Jelly Donut -->
<g filter="url(#glow)">
<ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#donutGradient)" opacity="0.8"/>
<ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#donutGradient)" opacity="0.4" transform="rotate(45 150 150)"/>
<ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#donutGradient)" opacity="0.2" transform="rotate(90 150 150)"/>
</g>
<!-- Spaceship -->
<g transform="translate(150, 120)" filter="url(#glow)">
<!-- Body -->
<path d="M0,-20 L10,10 L-10,10 Z" fill="url(#shipGradient)" stroke="#333" stroke-width="1"/>
<!-- Wings -->
<polygon points="-15,0 -30,10 -15,20" fill="#555" opacity="0.8"/>
<polygon points="15,0 30,10 15,20" fill="#555" opacity="0.8"/>
<!-- Windows -->
<circle cx="0" cy="-5" r="3" fill="#00ffff"/>
<circle cx="5" cy="5" r="2" fill="#00ffff"/>
<circle cx="-5" cy="5" r="2" fill="#00ffff"/>
<!-- Exhaust Flames -->
<path d="M0,10 C-5,15 -5,20 0,25 C5,20 5,15 0,10" fill="orange" opacity="0.6"/>
</g>
<!-- Space Debris -->
<circle cx="80" cy="80" r="2" fill="#ffffff" opacity="0.7"/>
<circle cx="220" cy="60" r="1.5" fill="#ffffff" opacity="0.5"/>
<circle cx="200" cy="200" r="2.5" fill="#ffffff" opacity="0.6"/>
<circle cx="50" cy="250" r="1" fill="#ffffff" opacity="0.4"/>
</svg>
Judge's Analysis
Player 2's image creatively integrates the spaceship into the jelly donut concept with a clear depiction of a triangular ship and a dynamic, glowing donut shape.
The composition is balanced and visually appealing, capturing the essence of the prompt effectively.
Player 1's submission, while colorful, lacks clarity in representing the spaceship and donut concept distinctly.
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
"Floating umbrella carrying a fish over a cityscape"
"Floating islands with dancing flamingos in the sky"
"An octopus wearing a top hat, juggling planets while riding a bicycle"
"Glowing jellyfish orbiting a tiny planet in a starry galaxy"
"Chameleon wearing sunglasses, sunbathing on a bright striped beach towel"
"A surreal clock with melting numbers, dripping into a desert landscape"