Creative Challenge
"A cat with butterfly wings drinking tea in a floating teacup"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" x2="1" y1="0" y2="1">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="100%" stop-color="#FFD700" />
</linearGradient>
<radialGradient id="cupGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFE4B5" />
<stop offset="100%" stop-color="#FFA500" />
</radialGradient>
<pattern id="butterflyPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
<circle cx="25" cy="25" r="10" fill="#FF69B4" />
<circle cx="15" cy="15" r="5" fill="#FFD700" />
<circle cx="35" cy="35" r="5" fill="#FFD700" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<circle cx="150" cy="150" r="100" fill="url(#cupGradient)" />
<ellipse cx="150" cy="180" rx="60" ry="40" fill="#FFF" />
<path d="M120,180 C120,200 180,200 180,180" fill="#FFD700" />
<circle cx="150" cy="160" r="50" fill="#FFE4B5" />
<polygon points="100,100 200,100 150,50" fill="url(#butterflyPattern)" />
<path d="M100,150 C100,130 200,130 200,150" fill="#FF69B4" />
<circle cx="130" cy="130" r="10" fill="#000" />
<circle cx="170" cy="130" r="10" fill="#000" />
<path d="M130,140 Q150,150 170,140" stroke="#000" stroke-width="2" fill="none" />
<path d="M120,120 Q140,110 160,120" stroke="#000" stroke-width="2" fill="none" />
<path d="M140,120 Q150,100 160,120" stroke="#000" stroke-width="2" fill="none" />
<path d="M140,160 Q150,170 160,160" stroke="#000" stroke-width="2" fill="none" />
<path d="M130,150 Q150,140 170,150" stroke="#000" stroke-width="2" fill="none" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient Definitions -->
<defs>
<linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff69b4" />
<stop offset="100%" stop-color="#ffe6cc" />
</linearGradient>
<radialGradient id="teaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ffd700" />
<stop offset="100%" stop-color="#fffacd" />
</radialGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#f0f0f0" rx="10" />
<!-- Floating Teacup -->
<g transform="translate(120, 100)">
<circle cx="0" cy="0" r="40" fill="url(#teaGradient)" />
<path d="M 0 -40 C -20 -20, 20 -20, 0 0" stroke="#ccc" stroke-width="2" fill="none" />
<path d="M 0 0 C -20 20, 20 20, 0 40" stroke="#ccc" stroke-width="2" fill="none" />
</g>
<!-- Cat with Butterfly Wings -->
<g transform="translate(150, 150)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="30" ry="20" fill="#ccc" />
<!-- Head -->
<circle cx="0" cy="-20" r="15" fill="#ccc" />
<!-- Ears -->
<path d="M -15 -35 L 0 -20 L -15 -5 Z" fill="#ccc" />
<path d="M 15 -35 L 0 -20 L 15 -5 Z" fill="#ccc" />
<!-- Whiskers -->
<path d="M -10 -25 L -5 -20" stroke="#666" stroke-width="2" />
<path d="M 10 -25 L 5 -20" stroke="#666" stroke-width="2" />
<!-- Wings -->
<path d="M 0 0 L -30 30 L 0 60 L 30 30 Z" fill="url(#wingGradient)" />
<path d="M 0 0 L 30 30 L 0 60 L -30 30 Z" fill="url(#wingGradient)" />
</g>
<!-- Tea -->
<g transform="translate(120, 120)">
<rect x="0" y="0" width="10" height="10" fill="#ffd700" rx="2" />
<path d="M 5 5 L 5 15" stroke="#ffd700" stroke-width="2" />
</g>
<!-- Drinking -->
<g transform="translate(150, 150)">
<path d="M 0 0 L 0 -20" stroke="#666" stroke-width="2" />
<circle cx="0" cy="-20" r="5" fill="#666" />
</g>
</svg>
Judge's Analysis
Player 2's image more closely adheres to the prompt by featuring elements that suggest a cat with butterfly wings and a floating teacup.
The composition includes a cat-like figure with a pink shape resembling wings and a floating teacup concept.
Player 1's image lacks these specific elements and does not clearly represent 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
"Rainbow octopus juggling donuts in space"
"Astronaut playing chess with a giant snail on a starry cliff"
"Dancing skyscraper in a meadow"
"A snail with a cityscape shell in retro-futuristic style"
"Dancing jellyfish in a neon cyberpunk ocean"
"Clockwork dragon breathing gears and cogs instead of fire"