Creative Challenge
"Floating fishbowl in a galaxy with planets as colorful fish"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Galaxy Background -->
<radialGradient id="galaxy" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#3498db" stop-opacity="0.8"/>
<stop offset="0.5" stop-color="#9b59b6" stop-opacity="0.5"/>
<stop offset="1" stop-color="#2ecc71" stop-opacity="0.2"/>
</radialGradient>
<circle cx="150" cy="150" r="150" fill="url(#galaxy)"/>
<!-- Fishbowl -->
<ellipse cx="150" cy="150" rx="80" ry="60" fill="#f1f1f1" opacity="0.8"/>
<circle cx="150" cy="150" r="70" fill="#fff" opacity="0.5"/>
<circle cx="150" cy="150" r="60" fill="#fff" opacity="0.2"/>
<!-- Planets as Fish -->
<!-- Planet 1: Mercury -->
<g transform="translate(120 100)">
<circle cx="0" cy="0" r="10" fill="#ff69b4"/>
<circle cx="0" cy="0" r="8" fill="#fff" opacity="0.5"/>
<circle cx="0" cy="0" r="6" fill="#ff69b4" opacity="0.2"/>
<path d="M -5 -5 L 5 5" stroke="#fff" stroke-width="2" opacity="0.5"/>
</g>
<!-- Planet 2: Venus -->
<g transform="translate(180 120)">
<circle cx="0" cy="0" r="12" fill="#ffd700"/>
<circle cx="0" cy="0" r="10" fill="#fff" opacity="0.5"/>
<circle cx="0" cy="0" r="8" fill="#ffd700" opacity="0.2"/>
<path d="M -6 -6 L 6 6" stroke="#fff" stroke-width="2" opacity="0.5"/>
</g>
<!-- Planet 3: Earth -->
<g transform="translate(220 140)">
<circle cx="0" cy="0" r="14" fill="#2ecc71"/>
<circle cx="0" cy="0" r="12" fill="#fff" opacity="0.5"/>
<circle cx="0" cy="0" r="10" fill="#2ecc71" opacity="0.2"/>
<path d="M -7 -7 L 7 7" stroke="#fff" stroke-width="2" opacity="0.5"/>
</g>
<!-- Planet 4: Mars -->
<g transform="translate(80 160)">
<circle cx="0" cy="0" r="16" fill="#e74c3c"/>
<circle cx="0" cy="0" r="14" fill="#fff" opacity="0.5"/>
<circle cx="0" cy="0" r="12" fill="#e74c3c" opacity="0.2"/>
<path d="M -8 -8 L 8 8" stroke="#fff" stroke-width="2" opacity="0.5"/>
</g>
<!-- Bubbles -->
<circle cx="140" cy="130" r="4" fill="#fff" opacity="0.5"/>
<circle cx="160" cy="110" r="3" fill="#fff" opacity="0.5"/>
<circle cx="180" cy="140" r="5" fill="#fff" opacity="0.5"/>
<circle cx="120" cy="120" r="2" fill="#fff" opacity="0.5"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="galaxy" cx="50%" cy="50%" r="60%">
<stop offset="0%" style="stop-color:#2a0845"/>
<stop offset="100%" style="stop-color:#6441A5"/>
</radialGradient>
<radialGradient id="bowl" cx="50%" cy="50%" r="50%">
<stop offset="80%" style="stop-color:rgba(255,255,255,0.2)"/>
<stop offset="100%" style="stop-color:rgba(255,255,255,0.4)"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#galaxy)"/>
<!-- Stars -->
<g fill="white">
<circle cx="50" cy="50" r="1"/>
<circle cx="150" cy="30" r="1.5"/>
<circle cx="250" cy="70" r="1"/>
<circle cx="80" cy="200" r="1.2"/>
<circle cx="220" cy="180" r="1"/>
<circle cx="180" cy="250" r="1.5"/>
</g>
<!-- Fishbowl -->
<ellipse cx="150" cy="150" rx="100" ry="80" fill="url(#bowl)" stroke="rgba(255,255,255,0.5)" stroke-width="2"/>
<!-- Planet-Fish -->
<g filter="url(#glow)">
<circle cx="120" cy="130" r="20" fill="#FF6B6B">
<animate attributeName="cy" values="130;140;130" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="180" cy="170" r="25" fill="#4ECDC4">
<animate attributeName="cy" values="170;160;170" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="150" r="15" fill="#FFE66D">
<animate attributeName="cx" values="150;160;150" dur="2s" repeatCount="indefinite"/>
</circle>
</g>
<!-- Decorative rings -->
<g stroke-width="1" fill="none" opacity="0.6">
<ellipse cx="120" cy="130" rx="25" ry="5" stroke="#FF6B6B" transform="rotate(-15,120,130)"/>
<ellipse cx="180" cy="170" rx="30" ry="6" stroke="#4ECDC4" transform="rotate(20,180,170)"/>
<ellipse cx="150" cy="150" rx="20" ry="4" stroke="#FFE66D" transform="rotate(0,150,150)"/>
</g>
<!-- Bubbles -->
<g fill="rgba(255,255,255,0.5)">
<circle cx="160" cy="100" r="3">
<animate attributeName="cy" values="100;80;100" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="190" cy="120" r="2">
<animate attributeName="cy" values="120;100;120" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="130" cy="110" r="2">
<animate attributeName="cy" values="110;90;110" dur="5s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the concept more effectively by placing colorful planets inside a floating fishbowl against a galaxy-like background, creating a cohesive and visually appealing scene.
The use of colors and the subtle hints of stars enhance the cosmic theme.
In contrast, Player 1's image lacks depth and a clear representation of the galaxy, making Player 2's image more aligned with the prompt.
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 snail with a cityscape of tiny buildings on its shell"
"Pirate cat on a unicycle juggling starfish"
"Dreamy cityscape inside a snow globe with a swirling galaxy background"
"Flying cactus in a top hat balancing on a unicycle with a desert sunset backdrop"
"Underwater circus with juggling octopus, tightrope starfish, and clownfish on unicycles"
"Meteor shower over a crystal desert"