Creative Challenge
"A cat wearing a Victorian diving suit, holding an antique compass"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="300" height="300" fill="#cce6ff" />
<!-- Cat body -->
<circle cx="150" cy="150" r="80" fill="#4d4d4d" />
<!-- Cat head -->
<circle cx="150" cy="110" r="60" fill="#4d4d4d" />
<ellipse cx="150" cy="145" rx="30" ry="40" fill="#4d4d4d" />
<!-- Cat eyes -->
<circle cx="135" cy="100" r="8" fill="#ffd633" />
<circle cx="165" cy="100" r="8" fill="#ffd633" />
<!-- Cat nose -->
<polygon points="150,120 145,130 155,130" fill="#e60000" />
<!-- Cat mouth -->
<path d="M140 145 Q150 160 160 145" fill="none" stroke="#e60000" stroke-width="2" />
<!-- Victorian diving suit -->
<rect x="130" y="190" width="40" height="50" fill="#0066cc" />
<rect x="120" y="200" width="60" height="40" fill="#0066cc" />
<rect x="140" y="180" width="20" height="20" fill="#0066cc" />
<!-- Antique compass -->
<circle cx="90" cy="220" r="5" fill="#b35900" />
<circle cx="140" cy="220" r="5" fill="#b35900" />
<circle cx="115" cy="245" r="5" fill="#b35900" />
<circle cx="115" cy="195" r="5" fill="#b35900" />
<circle cx="90" cy="270" r="5" fill="#b35900" />
<circle cx="140" cy="270" r="5" fill="#b35900" />
<circle cx="165" cy="245" r="5" fill="#b35900" />
<circle cx="165" cy="195" r="5" fill="#b35900" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="diveHelmetGradient" cx="0.5" cy="0.5" r="0.5" fx="0.4" fy="0.4">
<stop offset="0%" style="stop-color:rgb(204,136,34);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(153,102,17);stop-opacity:1" />
</radialGradient>
<radialGradient id="catFurGradient" cx="0.5" cy="0.5" r="0.5" fx="0.4" fy="0.4">
<stop offset="0%" style="stop-color:#F2C14E;stop-opacity:1" />
<stop offset="100%" style="stop-color:#D89127;stop-opacity:1" />
</radialGradient>
<pattern id="suitTexture" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="8" stroke="#402D00" stroke-width="1" fill="none" />
</pattern>
<linearGradient id="compassNeedleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:red;stop-opacity:1" />
<stop offset="100%" style="stop-color:black;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Victorian Diving Suit Helmet -->
<circle cx="150" cy="150" r="80" fill="url(#diveHelmetGradient)" stroke="#4A3C24" stroke-width="5" />
<circle cx="150" cy="150" r="60" fill="url(#suitTexture)" opacity="0.7" />
<circle cx="150" cy="140" r="30" fill="none" stroke="#4A3C24" stroke-width="4" />
<!-- Helmet Bolts -->
<circle cx="110" cy="110" r="5" fill="#4A3C24" />
<circle cx="190" cy="110" r="5" fill="#4A3C24" />
<circle cx="150" cy="80" r="5" fill="#4A3C24" />
<circle cx="120" cy="190" r="5" fill="#4A3C24" />
<circle cx="180" cy="190" r="5" fill="#4A3C24" />
<!-- Cat Face -->
<ellipse cx="150" cy="150" rx="40" ry="35" fill="url(#catFurGradient)" />
<circle cx="140" cy="145" r="5" fill="#000000" />
<circle cx="160" cy="145" r="5" fill="#000000" />
<path d="M140 155 Q150 165 160 155" stroke="#000000" stroke-width="2" fill="none" />
<!-- Cat Ears (Outside Helmet) -->
<path d="M110 90 L125 110 Q115 105 110 90" fill="url(#catFurGradient)" />
<path d="M190 90 L175 110 Q185 105 190 90" fill="url(#catFurGradient)" />
<!-- Compass -->
<circle cx="230" cy="230" r="40" fill="url(#diveHelmetGradient)" stroke="#4A3C24" stroke-width="3" />
<circle cx="230" cy="230" r="30" fill="#FFFFFF" />
<!-- Compass Needle -->
<path d="M230 200 L235 230 L230 230 L225 230 Z" fill="url(#compassNeedleGradient)" />
<!-- Compass Directions -->
<text x="230" y="210" font-family="Arial" font-size="8" fill="#4A3C24" text-anchor="middle">N</text>
<text x="230" y="254" font-family="Arial" font-size="8" fill="#4A3C24" text-anchor="middle">S</text>
<text x="207" y="230" font-family="Arial" font-size="8" fill="#4A3C24" text-anchor="middle">W</text>
<text x="253" y="230" font-family="Arial" font-size="8" fill="#4A3C24" text-anchor="middle">E</text>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the theme of a cat wearing a Victorian diving suit, with clear visual elements like the detailed suit design and the antique compass.
The technical quality and creativity are higher, with a more distinct cat face and compass, compared to Player 1's simpler and less detailed illustration.
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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"