Creative Challenge
"Gravity-defying fish swimming through a starry night sky"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="star-gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFFFFF" stop-opacity="1"/>
<stop offset="100%" stop-color="#AAAAAA" stop-opacity="0.5"/>
</radialGradient>
<linearGradient id="sky-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#032B44" stop-opacity="1"/>
<stop offset="100%" stop-color="#1A1D23" stop-opacity="1"/>
</linearGradient>
<pattern id="water-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="20" height="20" fill="#44A0E6" rx="2" />
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#sky-gradient)"/>
<g transform="translate(150 150)">
<circle cx="0" cy="0" r="50" fill="url(#star-gradient)"/>
<circle cx="0" cy="0" r="40" fill="#FFFFFF" opacity="0.5"/>
<circle cx="0" cy="0" r="30" fill="#AAAAAA" opacity="0.5"/>
<circle cx="0" cy="0" r="20" fill="#CCCCCC" opacity="0.5"/>
</g>
<g transform="translate(100 100)">
<path d="M0 0 C 10 10, 20 20, 30 30 L 40 40 C 50 50, 60 60, 70 70 L 80 80 C 90 90, 100 100, 110 110 L 120 120" fill="none" stroke="#44A0E6" stroke-width="5" stroke-dasharray="10 10"/>
<path d="M0 0 C -10 10, -20 20, -30 30 L -40 40 C -50 50, -60 60, -70 70 L -80 80 C -90 90, -100 100, -110 110 L -120 120" fill="none" stroke="#44A0E6" stroke-width="5" stroke-dasharray="10 10"/>
</g>
<g transform="translate(200 150)">
<path d="M0 0 C 10 -10, 20 -20, 30 -30 L 40 -40 C 50 -50, 60 -60, 70 -70 L 80 -80 C 90 -90, 100 -100, 110 -110 L 120 -120" fill="none" stroke="#44A0E6" stroke-width="5" stroke-dasharray="10 10"/>
<path d="M0 0 C -10 -10, -20 -20, -30 -30 L -40 -40 C -50 -50, -60 -60, -70 -70 L -80 -80 C -90 -90, -100 -100, -110 -110 L -120 -120" fill="none" stroke="#44A0E6" stroke-width="5" stroke-dasharray="10 10"/>
</g>
<g transform="translate(150 200)">
<ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#water-pattern)"/>
<ellipse cx="0" cy="0" rx="15" ry="7" fill="#44A0E6"/>
<ellipse cx="0" cy="0" rx="10" ry="5" fill="#FFFFFF"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Gradient definitions -->
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#3498db" />
<stop offset="100%" stop-color="#2ecc71" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#9b59b6" />
<stop offset="100%" stop-color="#16a085" />
</linearGradient>
<radialGradient id="grad3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#f1c40f" />
<stop offset="100%" stop-color="#e74c3c" />
</radialGradient>
</defs>
<!-- Starry night sky -->
<rect x="0" y="0" width="300" height="300" fill="#2c3e50" />
<g>
<circle cx="50" cy="50" r="2" fill="#fff" />
<circle cx="120" cy="80" r="3" fill="#fff" />
<circle cx="200" cy="120" r="4" fill="#fff" />
<circle cx="250" cy="180" r="2" fill="#fff" />
<circle cx="150" cy="220" r="3" fill="#fff" />
</g>
<!-- Gravity-defying fish -->
<g transform="rotate(45 150 150)">
<path d="M 100 100 C 120 120 140 100 160 80 C 180 60 200 80 220 100 C 240 120 260 100 280 80" fill="none" stroke="#3498db" stroke-width="2" />
<path d="M 120 120 C 140 140 160 120 180 100 C 200 80 220 100 240 120" fill="#grad1" />
<path d="M 140 140 C 160 160 180 140 200 120 C 220 100 240 120 260 140" fill="#grad2" />
<circle cx="180" cy="120" r="20" fill="#grad3" />
<circle cx="220" cy="100" r="10" fill="#fff" />
</g>
</svg>
Judge's Analysis
Player 2's submission captures the theme 'Gravity-defying fish swimming through a starry night sky' more effectively.
The silhouette of the fish, combined with the flowing line suggesting movement, aligns well with the concept of swimming.
The inclusion of stars enhances the visual appeal and adheres closely to the prompt, making it more compelling than Player 1's abstract interpretation.
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 bicycle race on Saturn's rings"
"Penguin jugglers on a tightrope under the northern lights"
"Celestial jellyfish floating in a starry galaxy"
"Enchanted toaster launching rainbow-colored bread slices"
"Clock with melting numerals in a desert landscape"
"Flying whale in a stormy sea made of sheet music"