Creative Challenge
"Antique clock made of rainbow cobblestones, ticking above a tiny enchanted forest"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cobblestone-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #ff7e00; stop-opacity: 1" />
<stop offset="25%" style="stop-color: #ff007f; stop-opacity: 1" />
<stop offset="50%" style="stop-color: #007fff; stop-opacity: 1" />
<stop offset="75%" style="stop-color: #00ff7f; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #ff00f7; stop-opacity: 1" />
</linearGradient>
<radialGradient id="forest-light" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #e0f7fa; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #004d40; stop-opacity: 1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="#dcdcdc" />
<g transform="translate(150, 150)">
<g>
<ellipse cx="0" cy="0" rx="60" ry="30" fill="url(#cobblestone-gradient)" stroke="#000" stroke-width="2" />
<ellipse cx="0" cy="0" rx="75" ry="35" fill="none" stroke="#000" stroke-width="2" />
<path d="M-20,-10 L-30,0 L-20,10 Z" fill="#000" transform="rotate(30)" />
<path d="M20,-10 L30,0 L20,10 Z" fill="#000" transform="rotate(-30)" />
<circle cx="0" cy="0" r="5" fill="#000" />
<circle cx="0" cy="-20" r="3" fill="#fff" />
<circle cx="0" cy="20" r="3" fill="#fff" />
</g>
<g transform="translate(0, 30)">
<path d="M-65,10 C-70,40 -30,40 0,0 C30,40 70,40 65,10" fill="url(#forest-light)" />
<path d="M-55,20 C-60,50 -20,50 0,10 C20,50 60,50 55,20" fill="darkgreen" />
<circle cx="-50" cy="15" r="3" fill="yellow" />
<circle cx="-40" cy="10" r="3" fill="yellow" />
<circle cx="50" cy="15" r="3" fill="yellow" />
<circle cx="40" cy="10" r="3" fill="yellow" />
<polygon points="-40,20 -45,40 -35,40" fill="saddlebrown" />
<polygon points="40,20 45,40 35,40" fill="saddlebrown" />
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff5f6d" />
<stop offset="25%" stop-color="#ffc371" />
<stop offset="50%" stop-color="#3f87a6" />
<stop offset="75%" stop-color="#337ba8" />
<stop offset="100%" stop-color="#0f3057" />
</radialGradient>
<linearGradient id="forestGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="rgba(0, 128, 0, 0.8)" />
<stop offset="100%" stop-color="rgba(0, 255, 0, 0.3)" />
</linearGradient>
<pattern id="cobblePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="5" fill="url(#clockGradient)" />
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur" />
<feMerge>
<feMergeNode in="coloredBlur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="black" />
<circle cx="150" cy="150" r="120" fill="url(#cobblePattern)" />
<circle cx="150" cy="150" r="115" stroke="#fff" stroke-width="2" fill="none"/>
<path d="M150 35 L155 145 L150 150 L145 145 Z" fill="#fff" transform="rotate(30 150 150)" />
<path d="M150 50 L160 145 L150 150 L140 145 Z" fill="#fff" transform="rotate(-45 150 150)" />
<circle cx="150" cy="150" r="8" fill="#fff" />
<g>
<ellipse cx="150" cy="235" rx="100" ry="25" fill="url(#forestGradient)" filter="url(#glow)" />
<ellipse cx="150" cy="240" rx="90" ry="20" fill="#ffffff11" />
<g stroke="#008B45">
<path d="M110 235 Q110 190 125 230 L130 210 Q130 185 140 220 L150 210 Q150 195 160 230 L170 200 Q170 175 180 220 L190 230 Q200 180 200 235" fill="none" />
<path d="M110 235 L110 230 Q115 180 125 230" fill="none" />
</g>
<g stroke="#013220">
<line x1="100" y1="240" x2="105" y2="225" />
<line x1="200" y1="240" x2="195" y2="225" />
<line x1="150" y1="240" x2="150" y2="220" />
</g>
<circle cx="140" cy="228" r="5" fill="white" />
<circle cx="155" cy="230" r="7" fill="rgb(34,139,34)" />
<circle cx="175" cy="222" r="4" fill="white" />
</g>
</svg>
Judge's Analysis
Player 2's submission effectively captures the concept of an antique clock with a more defined clock face and hands, set against a backdrop that suggests a tiny enchanted forest.
The use of a black background enhances the contrast and highlights the elements, adding to the visual appeal.
Player 1's image, while colorful, lacks clarity in depicting the elements of the clock and the forest, making it less adherent to 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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"