Creative Challenge
"A cat with butterfly wings, floating over a geometric cityscape"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,195,113);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(248,96,179);stop-opacity:1" />
</linearGradient>
<linearGradient id="cityGradient" x1="100%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(45,66,89);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(142,202,230);stop-opacity:1" />
</linearGradient>
</defs>
<g transform="translate(50, 50)">
<!-- Butterfly wing (left) -->
<path d="M75,150 Q0,100 50,50 Q100,0 150,50 Q200,100 125,150 Z" fill="url(#wingGradient)" fill-opacity="0.9" />
<!-- Butterfly wing (right) -->
<path d="M225,150 Q300,100 250,50 Q200,0 150,50 Q100,100 175,150 Z" fill="url(#wingGradient)" fill-opacity="0.9" />
<!-- Cat body -->
<ellipse cx="150" cy="175" rx="30" ry="50" fill="gray" />
<!-- Cat head -->
<circle cx="150" cy="120" r="25" fill="gray" />
<!-- Cat ears -->
<polygon points="135,100 150,85 165,100" fill="gray" />
<polygon points="150,100 165,85 180,100" fill="gray" />
<!-- Cat eyes -->
<circle cx="140" cy="115" r="5" fill="white" />
<circle cx="160" cy="115" r="5" fill="white" />
<!-- Cat pupils -->
<circle cx="140" cy="115" r="2" fill="black" />
<circle cx="160" cy="115" r="2" fill="black" />
<!-- Cat mouth -->
<path d="M145,130 Q150,135 155,130" stroke="black" stroke-width="2" fill="none" />
</g>
<!-- Geometric cityscape -->
<g transform="translate(0, 150)">
<rect x="10" y="120" width="30" height="60" fill="url(#cityGradient)" />
<rect x="50" y="110" width="25" height="70" fill="url(#cityGradient)" />
<rect x="85" y="100" width="28" height="80" fill="url(#cityGradient)" />
<rect x="120" y="140" width="40" height="40" fill="url(#cityGradient)" />
<polygon points="160,160 170,90 180,160" fill="url(#cityGradient)" />
<polygon points="200,150 210,80 220,150" fill="url(#cityGradient)" />
<rect x="240" y="130" width="30" height="50" fill="url(#cityGradient)" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#2c0452"/>
<stop offset="100%" style="stop-color:#7b287d"/>
</linearGradient>
<pattern id="buildings" width="60" height="60" patternUnits="userSpaceOnUse">
<rect x="5" y="20" width="20" height="40" fill="#1a1a1a"/>
<rect x="35" y="10" width="15" height="50" fill="#262626"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- City -->
<rect x="0" y="180" width="300" height="120" fill="url(#buildings)"/>
<!-- Cat body -->
<path d="M150 100 C 180 100, 200 120, 200 150 C 200 180, 180 200, 150 200 C 120 200, 100 180, 100 150 C 100 120, 120 100, 150 100" fill="#4a4a4a"/>
<!-- Wings -->
<path d="M140 130 C 100 100, 60 120, 80 160 C 100 180, 130 160, 140 130" fill="#ff69b4" opacity="0.8">
<animate attributeName="d" dur="4s" repeatCount="indefinite"
values="M140 130 C 100 100, 60 120, 80 160 C 100 180, 130 160, 140 130;
M140 130 C 100 110, 70 130, 90 170 C 110 190, 130 160, 140 130;
M140 130 C 100 100, 60 120, 80 160 C 100 180, 130 160, 140 130"/>
</path>
<path d="M160 130 C 200 100, 240 120, 220 160 C 200 180, 170 160, 160 130" fill="#ff69b4" opacity="0.8">
<animate attributeName="d" dur="4s" repeatCount="indefinite"
values="M160 130 C 200 100, 240 120, 220 160 C 200 180, 170 160, 160 130;
M160 130 C 200 110, 230 130, 210 170 C 190 190, 170 160, 160 130;
M160 130 C 200 100, 240 120, 220 160 C 200 180, 170 160, 160 130"/>
</path>
<!-- Wing patterns -->
<circle cx="120" cy="140" r="8" fill="#fff" opacity="0.6"/>
<circle cx="180" cy="140" r="8" fill="#fff" opacity="0.6"/>
<!-- Cat features -->
<path d="M130 140 L 140 150 L 130 160" stroke="#000" fill="none" stroke-width="2"/>
<path d="M170 140 L 160 150 L 170 160" stroke="#000" fill="none" stroke-width="2"/>
<circle cx="135" cy="145" r="5" fill="#000"/>
<circle cx="165" cy="145" r="5" fill="#000"/>
<path d="M150 155 Q 155 160 150 165" stroke="#000" fill="none" stroke-width="2"/>
<!-- Floating stars -->
<g fill="#fff">
<circle cx="50" cy="50" r="2">
<animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="250" cy="70" r="2">
<animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="40" r="2">
<animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 1's submission creatively combines a cat figure with butterfly wings and presents a clear geometric cityscape.
The use of gradient coloring on the wings adds visual appeal, and the composition is well-balanced with distinct elements.
Player 2's image, while visually striking, lacks clear representation of a cat and the 'floating' aspect, making Player 1's work more aligned with the prompt.
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
"Stilt-walking robot in a dessert cafe"
"Tree with clockwork gears for foliage against a full moon"
"An umbrella made of clouds, raining colorful candy drops"
"Juggling octopus wearing neon roller skates"
"Whale painting a starry night sky with its tail"
"Floating enchanted cactus with lunar eyes in a starlit desert"