Creative Challenge
"An ice cream cone melting in the shape of a crescent moon on a sunny beach."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Sky gradient -->
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#4682B4"/>
</linearGradient>
<!-- Sand gradient -->
<linearGradient id="sandGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FFF8DC"/>
<stop offset="100%" stop-color="#F4A460"/>
</linearGradient>
<!-- Sun radial gradient -->
<radialGradient id="sunGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FFA500"/>
</radialGradient>
<!-- Cone gradient -->
<linearGradient id="coneGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#F4A460"/>
<stop offset="100%" stop-color="#D2691E"/>
</linearGradient>
<!-- Ice cream (scoop) gradient -->
<linearGradient id="iceGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FFB6C1"/>
<stop offset="100%" stop-color="#FFC0CB"/>
</linearGradient>
<!-- Waffle pattern for cone details -->
<pattern id="wafflePattern" patternUnits="userSpaceOnUse" width="6" height="6">
<path d="M0,0 L6,6 M6,0 L0,6" stroke="#A0522D" stroke-width="0.5"/>
</pattern>
<!-- Clip path for cone cross-hatch -->
<clipPath id="coneClip">
<polygon points="130,160 170,160 150,230"/>
</clipPath>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<!-- Sun on the upper right -->
<circle cx="250" cy="50" r="30" fill="url(#sunGradient)"/>
<!-- Sandy beach -->
<rect x="0" y="220" width="300" height="80" fill="url(#sandGradient)"/>
<!-- Wavy ocean line near the beach -->
<path d="M0,210 Q50,200 100,210 T200,210 T300,210 L300,220 L0,220 Z" fill="#87CEEB" opacity="0.6"/>
<!-- Ice cream scoop in a crescent shape with a melting drip -->
<g id="iceCream">
<path
d="M 180,120
A 40,40 0 1,0 100,120
A 40,40 0 1,0 180,120 Z
M 200,120
A 40,40 0 1,1 120,120
A 40,40 0 1,1 200,120 Z"
fill="url(#iceGradient)"
fill-rule="evenodd"/>
<path
d="M 120,160
C 115,175, 130,185, 135,175
C 130,170, 125,165, 120,160 Z"
fill="url(#iceGradient)"/>
</g>
<!-- Ice cream cone -->
<polygon points="130,160 170,160 150,230" fill="url(#coneGradient)"/>
<g clip-path="url(#coneClip)">
<line x1="130" y1="160" x2="150" y2="230" stroke="#A0522D" stroke-width="1"/>
<line x1="150" y1="160" x2="150" y2="230" stroke="#A0522D" stroke-width="1"/>
<line x1="170" y1="160" x2="150" y2="230" stroke="#A0522D" stroke-width="1"/>
<line x1="137" y1="180" x2="163" y2="180" stroke="#A0522D" stroke-width="1"/>
<line x1="140" y1="200" x2="160" y2="200" stroke="#A0522D" stroke-width="1"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="sandGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,235,180);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(240,210,150);stop-opacity:1" />
</linearGradient>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(135,206,235);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,191,255);stop-opacity:1" />
</linearGradient>
<linearGradient id="iceCreamGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,204,204);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,102,102);stop-opacity:1" />
</linearGradient>
<linearGradient id="coneGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(205,133,63);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(139,69,19);stop-opacity:1" />
</linearGradient>
<pattern id="wavePattern" patternUnits="userSpaceOnUse" width="20" height="20">
<path d="M0 10 C 5 5, 15 5, 20 10 S 35 15, 40 10" fill="none" stroke="#4682b4" stroke-width="2"/>
</pattern>
</defs>
<!-- Sky -->
<rect x="0" y="0" width="300" height="150" fill="url(#skyGradient)"/>
<!-- Sun -->
<circle cx="250" cy="50" r="30" fill="yellow">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 250 50" to="360 250 50" dur="10s" repeatCount="indefinite"/>
</circle>
<circle cx="250" cy="50" r="40" fill="yellow" opacity="0.3">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 250 50" to="360 250 50" dur="12s" repeatCount="indefinite"/>
</circle>
<!-- Beach Sand -->
<rect x="0" y="150" width="300" height="150" fill="url(#sandGradient)"/>
<!-- Ocean -->
<rect x="0" y="140" width="300" height="20" fill="#87cefa"/>
<rect x="0" y="140" width="300" height="20" fill="url(#wavePattern)" opacity="0.5"/>
<!-- Melting Ice Cream Crescent Moon -->
<path d="M 150 100 C 180 80, 220 80, 250 100 C 240 140, 200 160, 150 150 C 100 160, 60 140, 50 100 Z" fill="url(#iceCreamGradient)">
<animate attributeName="d" dur="5s" repeatCount="indefinite" values="M 150 100 C 180 80, 220 80, 250 100 C 240 140, 200 160, 150 150 C 100 160, 60 140, 50 100 Z; M 150 105 C 185 85, 225 85, 255 105 C 245 145, 205 165, 155 155 C 105 165, 65 145, 55 105 Z; M 150 100 C 180 80, 220 80, 250 100 C 240 140, 200 160, 150 150 C 100 160, 60 140, 50 100 Z"/>
</path>
<!-- Cone -->
<path d="M 140 150 L 160 150 L 150 200 Z" fill="url(#coneGradient)"/>
</svg>
Judge's Analysis
Player 1's submission better represents the concept of a melting ice cream cone in the shape of a crescent moon.
The crescent-like shape is more distinct and visually ties into the melting theme, while also integrating the beach and sun effectively.
Player 2's design is less clear in conveying the crescent moon shape and feels less cohesive overall.
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.