Creative Challenge
"A turtle with a cityscape shell, rendered in geometric style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="cityGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#3498db" stop-opacity="1" />
<stop offset="100%" stop-color="#2ecc71" stop-opacity="1" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#cityGrad)" rx="10" />
<!-- Turtle Body -->
<circle cx="150" cy="150" r="70" fill="#1abc9c" />
<circle cx="150" cy="150" r="60" fill="#16a085" />
<!-- Cityscape Shell -->
<g transform="translate(120, 120)">
<rect x="0" y="0" width="60" height="30" fill="#2ecc71" rx="5" />
<rect x="10" y="30" width="40" height="60" fill="#2ecc71" rx="5" />
<rect x="30" y="80" width="30" height="40" fill="#2ecc71" rx="5" />
<circle cx="30" cy="70" r="10" fill="#f1c40f" />
<circle cx="50" cy="110" r="10" fill="#f1c40f" />
<path d="M0,100 L30,130 L60,100 Z" fill="#2ecc71" />
</g>
<!-- Windows and Details -->
<g transform="translate(120, 120)">
<rect x="5" y="5" width="10" height="10" fill="#fff" rx="2" />
<rect x="25" y="5" width="10" height="10" fill="#fff" rx="2" />
<rect x="45" y="5" width="10" height="10" fill="#fff" rx="2" />
<rect x="5" y="45" width="10" height="10" fill="#fff" rx="2" />
<rect x="25" y="45" width="10" height="10" fill="#fff" rx="2" />
<rect x="45" y="45" width="10" height="10" fill="#fff" rx="2" />
</g>
<!-- Head and Legs -->
<circle cx="120" cy="170" r="20" fill="#1abc9c" />
<circle cx="180" cy="170" r="20" fill="#1abc9c" />
<path d="M120,190 L140,200 L160,190 Z" fill="#1abc9c" />
<path d="M180,190 L160,200 L140,190 Z" fill="#1abc9c" />
<rect x="130" y="210" width="40" height="10" fill="#1abc9c" rx="5" />
<!-- Eyes -->
<circle cx="120" cy="150" r="10" fill="#2ecc71" />
<circle cx="180" cy="150" r="10" fill="#2ecc71" />
<circle cx="120" cy="150" r="5" fill="#fff" />
<circle cx="180" cy="150" r="5" fill="#fff" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cityGradient" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff7e5f;stop-opacity:1" />
<stop offset="100%" style="stop-color:#feb47b;stop-opacity:1" />
</linearGradient>
<linearGradient id="turtleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#009245;stop-opacity:1" />
<stop offset="100%" style="stop-color:#fcee21;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Turtle Body -->
<circle cx="150" cy="200" r="90" fill="url(#turtleGradient)" stroke="#004d40" stroke-width="4"/>
<!-- Turtle Head -->
<circle cx="75" cy="180" r="25" fill="#00796b" stroke="#004d40" stroke-width="3"/>
<!-- Turtle Limbs -->
<ellipse cx="110" cy="260" rx="20" ry="10" fill="#00796b" stroke="#004d40" stroke-width="3"/>
<ellipse cx="190" cy="260" rx="20" ry="10" fill="#00796b" stroke="#004d40" stroke-width="3"/>
<ellipse cx="85" cy="130" rx="10" ry="20" fill="#00796b" stroke="#004d40" stroke-width="3"/>
<ellipse cx="150" cy="110" rx="10" ry="20" transform="rotate(-45 150 110)" fill="#00796b" stroke="#004d40" stroke-width="3"/>
<!-- Cityscape on Turtle Shell -->
<g transform="translate(110 120)">
<!-- Building 1 -->
<rect x="0" y="10" width="30" height="60" fill="url(#cityGradient)" stroke="#333" stroke-width="2"/>
<polygon points="0,10 15,0 30,10" fill="#ff5a5f" stroke="#c62828" stroke-width="2"/>
<!-- Building 2 -->
<rect x="40" y="0" width="40" height="70" fill="url(#cityGradient)" stroke="#333" stroke-width="2"/>
<polygon points="40,0 60,-20 80,0" fill="#ff5a5f" stroke="#c62828" stroke-width="2"/>
<!-- Building 3 -->
<rect x="90" y="20" width="30" height="50" fill="url(#cityGradient)" stroke="#333" stroke-width="2"/>
<polygon points="90,20 105,10 120,20" fill="#ff5a5f" stroke="#c62828" stroke-width="2"/>
</g>
<!-- Decorative Details -->
<path d="M140,200 Q130,190 120,200 T100,200" stroke="#004d40" stroke-width="2" fill="none"/>
<path d="M160,200 Q170,210 180,200 T200,200" stroke="#004d40" stroke-width="2" fill="none"/>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the prompt with a clearer representation of a turtle and a cityscape shell.
The use of geometric shapes to depict buildings is more pronounced and visually distinct, enhancing the concept.
Player 1's design, while creative, is less clear in illustrating the cityscape aspect of the shell.
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
"Two-legged cat juggling four colorful fish under a rainbow arch"
"Floating castle tangled in glowing balloon strings"
"Giraffe wearing a tuxedo, holding an umbrella on a moonlit beach"
"Robot dinosaur juggling planets in a circus"
"Uneven chessboard floating above a serene koi pond"
"Singing ice cream cone on a stage with spotlights"