Creative Challenge
"Iceberg shaped like a sleeping cat"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#a8dadc"/>
<stop offset="100%" stop-color="#f1faee"/>
</linearGradient>
<linearGradient id="waterGradient" x1="0" y1="140" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#8ecae6"/>
<stop offset="100%" stop-color="#219ebc"/>
</linearGradient>
<linearGradient id="icebergHeadGradient" gradientUnits="userSpaceOnUse" x1="0" y1="40" x2="0" y2="140">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cceeff"/>
</linearGradient>
<linearGradient id="icebergWaterGradient" gradientUnits="userSpaceOnUse" x1="0" y1="140" x2="0" y2="280">
<stop offset="0%" stop-color="#cceeff"/>
<stop offset="100%" stop-color="#99ddff"/>
</linearGradient>
</defs>
<!-- Sky Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)"/>
<!-- Water Background -->
<rect x="0" y="140" width="300" height="160" fill="url(#waterGradient)"/>
<!-- Underwater Body of Iceberg Cat -->
<path d="M110,140
C90,160, 90,210, 100,240
C120,280, 180,280, 200,240
C210,210, 205,180, 145,140
Z" fill="url(#icebergWaterGradient)"/>
<!-- Head of Iceberg Cat -->
<path d="M110,140
L105,130
L95,110
L90,90
L85,70
L80,50
L95,40
L115,40
L135,30
L155,40
L175,40
L180,50
L175,70
L170,90
L160,110
L150,130
L145,140
Z" fill="url(#icebergHeadGradient)"/>
<!-- Cat's Closed Eyes -->
<path d="M115,80 Q120,75 125,80" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M145,80 Q150,75 155,80" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/>
<!-- Cat's Nose -->
<polygon points="132,90 138,90 135,95" fill="#000"/>
<!-- Wavy Waterline -->
<path d="M0,140 Q50,130 100,140 T200,140 T300,140" stroke="#5dade2" stroke-width="2" fill="none" opacity="0.7"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="iceGradient">
<stop offset="0%" stop-color="#4682B4" stop-opacity="1"/>
<stop offset="30%" stop-color="#B0C4DE" stop-opacity="1"/>
<stop offset="60%" stop-color="#E0FFFF" stop-opacity="1"/>
<stop offset="100%" stop-color="#FFFFFF" stop-opacity="1"/>
</linearGradient>
<pattern id="starPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="1" fill="#4169E1" opacity="0.5"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#4682B4"/>
<g transform="translate(150,150)">
<path d="M-100,-20 Q-50,-50 0,-20 Q50,-50 100,-20"
fill="url(#iceGradient)" stroke="#2F4F4F" stroke-width="2"/>
<path d="M-50,-20 L-30,-30 Q-20,-35 -10,-30 L0,-20"
fill="#2F4F4F" opacity="0.7"/>
<path d="M50,-20 L30,-30 Q20,-35 10,-30 L0,-20"
fill="#2F4F4F" opacity="0.7"/>
<circle cx="-20" cy="-40" r="15" fill="#4169E1" opacity="0.5"/>
<circle cx="20" cy="-40" r="15" fill="#4169E1" opacity="0.5"/>
<path d="M-80,-50 Q-60,-60 -40,-50"
fill="#2F4F4F" opacity="0.7"/>
<path d="M80,-50 Q60,-60 40,-50"
fill="#2F4F4F" opacity="0.7"/>
</g>
<rect y="200" width="300" height="100" fill="#87CEEB"/>
<g transform="translate(150,250)">
<path d="M-20,0 Q0,-20 20,0"
fill="#2F4F4F" opacity="0.7"/>
</g>
<g transform="translate(100,200)" opacity="0.3">
<rect width="300" height="300" fill="url(#starPattern)"/>
</g>
</svg>
Judge's Analysis
Player 1's submission creatively interprets the prompt by shaping the iceberg to resemble a sleeping cat, complete with facial features, which enhances its adherence to the theme.
The composition is clean and visually appealing, using gradients effectively to distinguish the iceberg from the water.
Player 2's image is more abstract, lacking clear representation of a cat, which makes it less effective in fulfilling 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
"An octopus wearing a top hat, juggling teacups in an underwater ballroom"
"Tiny dragon roasting marshmallows on a single matchstick"
"A snail wearing a top hat and monocle, sipping tea under a mushroom"
"Moonlit jellyfish ballet in a glass globe"
"Whale-shaped cloud raining neon-colored fish"
"Cyborg octopus knitting a galaxy with stars as yarn"