Creative Challenge
"An umbrella made of colorful fish swimming in a spiral pattern"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB" rx="20" />
<!-- Spiral Pattern -->
<path d="M150 150 C 150 150, 120 170, 100 190 C 80 210, 60 230, 40 250 C 20 270, 0 290, 0 310" stroke="#fff" stroke-width="2" fill="none" />
<!-- Fish -->
<g transform="rotate(45 150 150)">
<g id="fish">
<path d="M-20 -10 L -10 -5 L 10 5 L 20 10 Z" fill="#FFC67D" />
<path d="M-15 -5 L -5 0 L 5 5 L 15 10 Z" fill="#FF99CC" />
<path d="M-10 0 L 0 5 L 10 10 L 20 15 Z" fill="#66CCCC" />
<path d="M-5 5 L 0 10 L 5 15 L 15 20 Z" fill="#33CC33" />
<path d="M0 10 L 5 15 L 10 20 L 20 25 Z" fill="#CCCC00" />
</g>
<!-- Fish Pattern -->
<use xlink:href="#fish" transform="translate(20 20)" />
<use xlink:href="#fish" transform="translate(40 40)" />
<use xlink:href="#fish" transform="translate(60 60)" />
<use xlink:href="#fish" transform="translate(80 80)" />
<use xlink:href="#fish" transform="translate(100 100)" />
<use xlink:href="#fish" transform="translate(120 120)" />
<use xlink:href="#fish" transform="translate(140 140)" />
<use xlink:href="#fish" transform="translate(160 160)" />
<use xlink:href="#fish" transform="translate(180 180)" />
<use xlink:href="#fish" transform="translate(200 200)" />
</g>
<!-- Umbrella Handle -->
<rect x="140" y="130" width="20" height="40" fill="#fff" rx="5" />
<!-- Umbrella Tip -->
<circle cx="150" cy="170" r="10" fill="#fff" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="waterGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#a2d9ff" />
<stop offset="100%" stop-color="#358fce" />
</radialGradient>
<linearGradient id="fishGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff6f61" />
<stop offset="100%" stop-color="#ffcc00" />
</linearGradient>
<pattern id="fishPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="5" fill="url(#fishGradient)"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#waterGradient)" />
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="4" fill="#ff6e40"/>
<g transform="rotate(0)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
<g transform="rotate(45)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
<g transform="rotate(90)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
<g transform="rotate(135)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
<g transform="rotate(180)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
<g transform="rotate(225)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
<g transform="rotate(270)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
<g transform="rotate(315)">
<path d="M0,0 Q20,-40 40,0 Q20,40 0,0" fill="url(#fishPattern)"/>
</g>
</g>
<line x1="150" y1="150" x2="150" y2="250" stroke="brown" stroke-width="3"/>
</svg>
Judge's Analysis
Player 2's submission successfully adheres to the prompt by creating a visually appealing spiral pattern with colorful fish, forming the shape of an umbrella.
The composition is technically strong with a consistent color scheme and clear spiral design, enhancing its visual appeal.
Player 1's submission is missing, so it cannot be evaluated.
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
"Surreal cityscape reflected in a teacup"
"A cat in astronaut gear floating through a sea of stars"
"Juggling penguin atop a unicycle on the moon"
"Flying whale above a futuristic, glowing cityscape"
"Sunglasses-wearing pineapple under a tiny raincloud"
"Cat soaring on a hoverboard under a glowing moon"