Creative Challenge
"Clock tower sprouting giant dandelion seeds in a starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#000033" />
<stop offset="100%" stop-color="#000066" />
</linearGradient>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFFFFF" stop-opacity="1" />
<stop offset="100%" stop-color="#FFFFFF" stop-opacity="0" />
</radialGradient>
<pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="url(#starGlow)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<rect width="300" height="300" fill="url(#starPattern)" />
<g transform="translate(150, 250)">
<rect x="-20" y="-200" width="40" height="200" fill="#664422" />
<circle cx="0" cy="-200" r="30" fill="#888888" />
<path d="M-20,-200 Q0,-240 20,-200" fill="#AAAAAA" />
<g transform="scale(1.5)">
<path d="M-10,-170 Q0,-190 10,-170 T30,-170" fill="none" stroke="#FFFFFF" stroke-width="2" />
<path d="M-30,-150 Q0,-180 30,-150" fill="none" stroke="#FFFFFF" stroke-width="2" />
</g>
<g transform="translate(0, -200)">
<circle cx="0" cy="0" r="10" fill="#FFFF00" />
<path d="M0,-10 L5,5 M0,-10 L-5,5 M0,-10 L0,15" stroke="#FFFF00" stroke-width="2" />
</g>
</g>
<g transform="translate(150, 50)">
<circle cx="0" cy="0" r="10" fill="#FFFFFF" />
<path d="M0,-10 L5,5 M0,-10 L-5,5 M0,-10 L0,15" stroke="#FFFFFF" stroke-width="2" />
</g>
<g transform="translate(150, 50)">
<path d="M-80,-30 Q0,-100 80,-30 T200,-30" fill="none" stroke="#FFFFFF" stroke-width="2" />
<path d="M-120,-50 Q0,-150 120,-50 T240,-50" fill="none" stroke="#FFFFFF" stroke-width="2" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with a gradient starry night sky -->
<defs>
<radialGradient id="nightSkyGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#001a33" />
<stop offset="100%" stop-color="#000011" />
</radialGradient>
<linearGradient id="dandelionGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.8" />
<stop offset="100%" stop-color="#eeeeff" stop-opacity="0.2" />
</linearGradient>
<pattern id="stars" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="6" cy="6" r="1.5" fill="white" />
<circle cx="14" cy="18" r="1" fill="white" />
<circle cx="18" cy="4" r="1" fill="white" />
<circle cx="2" cy="14" r="1" fill="white" />
<circle cx="10" cy="10" r="1" fill="white" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#nightSkyGradient)" />
<rect width="300" height="300" fill="url(#stars)" opacity="0.3" />
<!-- Clock Tower Structure -->
<rect x="130" y="150" width="40" height="100" fill="#3c3f41" stroke="#222" stroke-width="2"/>
<polygon points="130,150 150,100 170,150" fill="#2b2d2f" stroke="#181818" stroke-width="2"/>
<circle cx="150" cy="170" r="15" fill="#fff" stroke="#222" stroke-width="2"/>
<line x1="150" y1="170" x2="160" y2="170" stroke="#181818" stroke-width="2"/>
<line x1="150" y1="170" x2="150" y2="160" stroke="#181818" stroke-width="2"/>
<!-- Dandelion Seeds Sprouting from the Tower -->
<g transform="translate(150, 150)">
<path d="M0,0 Q-10,-30 5,-50" fill="none" stroke="url(#dandelionGradient)" stroke-width="1"/>
<circle cx="5" cy="-50" r="5" fill="white" opacity="0.8" />
</g>
<g transform="translate(150, 150)">
<path d="M0,0 Q20,-40 -5,-70" fill="none" stroke="url(#dandelionGradient)" stroke-width="1"/>
<circle cx="-5" cy="-70" r="5" fill="white" opacity="0.8" />
</g>
<g transform="translate(150, 150)">
<path d="M0,0 Q20,-20 30,-50" fill="none" stroke="url(#dandelionGradient)" stroke-width="1"/>
<circle cx="30" cy="-50" r="5" fill="white" opacity="0.8" />
</g>
<g transform="translate(150, 150)">
<path d="M0,0 Q-30,10 -45,-10" fill="none" stroke="url(#dandelionGradient)" stroke-width="1"/>
<circle cx="-45" cy="-10" r="5" fill="white" opacity="0.8" />
</g>
<g transform="translate(150, 150)">
<path d="M0,0 Q15,30 -15,40" fill="none" stroke="url(#dandelionGradient)" stroke-width="1"/>
<circle cx="-15" cy="40" r="5" fill="white" opacity="0.8" />
</g>
</svg>
Judge's Analysis
Player 2's submission is more creative and adheres better to the prompt with a clear depiction of a clock tower and dandelion seeds.
The technical quality is superior, with the seeds elegantly sprouting from the tower in a visually appealing composition.
Player 1's image lacks clarity and detail in representing the concept effectively.
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
"Squirrel DJ spinning acorn records"
"A floating island with clockwork trees under a starry night sky"
"An umbrella tree growing under a waterfall"
"A glowing owl in a neon cityscape at night"
"Skeletal octopus plays a luminous xylophone under a bioluminescent sea"
"A giant cat knitting with skyscraper-sized yarn in a cityscape"