Creative Challenge
"Fishbowl floating in space, with goldfish orbiting a tiny planet"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="waterGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#A3D8E6; stop-opacity:1" />
<stop offset="100%" style="stop-color:#66B2C8; stop-opacity:1" />
</radialGradient>
<radialGradient id="planetGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFC300; stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF5733; stop-opacity:1" />
</radialGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="1.5" fill="#FFD700" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="black" />
<rect width="100%" height="100%" fill="url(#starPattern)" opacity="0.2" />
<ellipse cx="150" cy="150" rx="80" ry="40" fill="url(#waterGradient)" />
<path d="M70,150 Q50,130 50,170 Q50,210 70,190 Q90,210 90,170 Q90,130 70,150 Z" fill="#FF4500" />
<path d="M230,150 Q250,130 250,170 Q250,210 230,190 Q210,210 210,170 Q210,130 230,150 Z" fill="#FF4500" />
<circle cx="150" cy="100" r="30" fill="url(#planetGradient)" />
<circle cx="135" cy="85" r="5" fill="white" />
<circle cx="165" cy="85" r="5" fill="white" />
<path d="M150,120 Q130,140 150,160 Q170,140 150,120 Z" fill="white" />
<circle cx="100" cy="70" r="10" fill="#FF4500">
<animateMotion repeatCount="indefinite" dur="4s">
<mpath href="#orbitPath" />
</animateMotion>
</circle>
<circle cx="200" cy="50" r="10" fill="#FF4500">
<animateMotion repeatCount="indefinite" dur="3s">
<mpath href="#orbitPath" />
</animateMotion>
</circle>
<path id="orbitPath" d="M150,150 A100,50 0 1,1 150,50 A100,50 0 1,1 150,150" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" style="stop-color: #001d3d; stop-opacity: 1"/>
<stop offset="100%" style="stop-color: #0d3b66; stop-opacity: 1"/>
</radialGradient>
<radialGradient id="planetGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color: #ffc107; stop-opacity: 1"/>
<stop offset="100%" style="stop-color: #ff8f00; stop-opacity: 1"/>
</radialGradient>
<radialGradient id="bowlGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color: #e0f7fa; stop-opacity: 0"/>
<stop offset="70%" style="stop-color: #00acc1; stop-opacity: 0.5"/>
</radialGradient>
<linearGradient id="fishGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #f44336; stop-opacity: 1"/>
<stop offset="100%" style="stop-color: #ff1744; stop-opacity: 1"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#spaceGradient)" />
<circle cx="150" cy="150" r="20" fill="url(#planetGradient)" />
<ellipse cx="150" cy="150" rx="80" ry="40" fill="url(#bowlGradient)" stroke="#00838f" stroke-width="2" />
<path d="M150 100 Q170 160, 190 150 T230 100" fill="none" stroke="url(#fishGradient)" stroke-width="2" />
<path d="M150 100 Q130 160, 110 150 T70 100" fill="none" stroke="url(#fishGradient)" stroke-width="2" />
<circle cx="195" cy="125" r="4" fill="url(#fishGradient)" />
<polygon points="198,126 206,130 200,135" fill="url(#fishGradient)" />
<circle cx="105" cy="125" r="4" fill="url(#fishGradient)" />
<polygon points="102,126 94,130 100,135" fill="url(#fishGradient)" />
</svg>
Judge's Analysis
Player 2's submission effectively captures the concept of a fishbowl floating in space with goldfish orbiting a planet.
The use of a gradient background and smooth curves enhances the visual appeal and adds a sense of fluidity and motion.
Player 1's image, while colorful, lacks the clarity in conveying the idea of orbiting fish and appears more static.
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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"