Creative Challenge
"Floating clock islands orbiting a giant sunflower"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sunCenter" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#8B4513"/>
<stop offset="100%" style="stop-color:#654321"/>
</radialGradient>
<linearGradient id="petalGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FFD700"/>
<stop offset="100%" style="stop-color:#FFA500"/>
</linearGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#1a1a2e"/>
<!-- Orbit paths -->
<circle cx="150" cy="150" r="120" fill="none" stroke="#ffffff20" stroke-width="1"/>
<circle cx="150" cy="150" r="90" fill="none" stroke="#ffffff20" stroke-width="1"/>
<circle cx="150" cy="150" r="60" fill="none" stroke="#ffffff20" stroke-width="1"/>
<!-- Sunflower center -->
<circle cx="150" cy="150" r="40" fill="url(#sunCenter)"/>
<!-- Sunflower petals -->
<g id="petals">
<path d="M150,150 L190,130 Q200,150 190,170 Z" fill="url(#petalGrad)"/>
</g>
<use href="#petals" transform="rotate(30 150 150)"/>
<use href="#petals" transform="rotate(60 150 150)"/>
<use href="#petals" transform="rotate(90 150 150)"/>
<use href="#petals" transform="rotate(120 150 150)"/>
<use href="#petals" transform="rotate(150 150 150)"/>
<use href="#petals" transform="rotate(180 150 150)"/>
<use href="#petals" transform="rotate(210 150 150)"/>
<use href="#petals" transform="rotate(240 150 150)"/>
<use href="#petals" transform="rotate(270 150 150)"/>
<use href="#petals" transform="rotate(300 150 150)"/>
<use href="#petals" transform="rotate(330 150 150)"/>
<!-- Clock Islands -->
<g class="clock-island">
<g transform="rotate(30 150 150) translate(120 0)">
<path d="M0,0 L30,10 L40,30 L30,50 L0,60 L-30,50 L-40,30 L-30,10 Z"
fill="#4a4a6c" transform="translate(150 150)"/>
<circle cx="150" cy="150" r="15" fill="#2a2a3a" stroke="#gold" stroke-width="2"/>
<line x1="150" y1="150" x2="160" y2="140" stroke="#fff" stroke-width="2"/>
<line x1="150" y1="150" x2="145" y2="160" stroke="#fff" stroke-width="2"/>
</g>
</g>
<use href=".clock-island" transform="rotate(120 150 150)"/>
<use href=".clock-island" transform="rotate(240 150 150)"/>
<!-- Smaller floating clocks -->
<g class="mini-clock" transform="translate(150 70)">
<circle r="10" fill="#2a2a3a" stroke="#gold"/>
<line x1="0" y1="0" x2="6" y2="-4" stroke="#fff" stroke-width="1"/>
<line x1="0" y1="0" x2="-3" y2="5" stroke="#fff" stroke-width="1"/>
</g>
<use href=".mini-clock" transform="rotate(120 150 150)"/>
<use href=".mini-clock" transform="rotate(240 150 150)"/>
<!-- Sparkles -->
<circle cx="180" cy="90" r="1" fill="white"/>
<circle cx="120" cy="200" r="1" fill="white"/>
<circle cx="220" cy="160" r="1" fill="white"/>
<circle cx="80" cy="140" r="1" fill="white"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sunflowerGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1" />
</radialGradient>
<radialGradient id="clockGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#5DADE2;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2980B9;stop-opacity:1" />
</radialGradient>
<pattern id="floralPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="4" fill="#FF5733" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="#87CEEB" />
<circle cx="150" cy="150" r="50" fill="url(#sunflowerGradient)" />
<circle cx="150" cy="150" r="10" fill="#663300" />
<g transform="translate(100, 100)">
<g id="petals">
<ellipse cx="0" cy="-60" rx="20" ry="50" fill="url(#sunflowerGradient)" />
<ellipse cx="0" cy="60" rx="20" ry="50" fill="url(#sunflowerGradient)" />
<ellipse cx="-60" cy="0" rx="50" ry="20" fill="url(#sunflowerGradient)" />
<ellipse cx="60" cy="0" rx="50" ry="20" fill="url(#sunflowerGradient)" />
<ellipse cx="-42" cy="-42" rx="20" ry="40" fill="url(#sunflowerGradient)" />
<ellipse cx="42" cy="42" rx="20" ry="40" fill="url(#sunflowerGradient)" />
<ellipse cx="-42" cy="42" rx="20" ry="40" fill="url(#sunflowerGradient)" />
<ellipse cx="42" cy="-42" rx="20" ry="40" fill="url(#sunflowerGradient)" />
</g>
</g>
<g transform="translate(200, 100) rotate(45)">
<circle cx="0" cy="0" r="30" fill="url(#clockGradient)" />
<line x1="0" y1="0" x2="0" y2="-15" stroke="#FFF" stroke-width="3" />
<line x1="0" y1="0" x2="-10" y2="0" stroke="#FFF" stroke-width="3" />
<text x="-8" y="5" font-family="Arial" font-size="8" fill="#000">12</text>
<text x="-8" y="-15" font-family="Arial" font-size="8" fill="#000">6</text>
<text x="10" y="3" font-family="Arial" font-size="8" fill="#000">3</text>
<text x="-10" y="3" font-family="Arial" font-size="8" fill="#000">9</text>
</g>
<g transform="translate(100, 200) rotate(-30)">
<circle cx="0" cy="0" r="30" fill="url(#clockGradient)" />
<line x1="0" y1="0" x2="0" y2="-15" stroke="#FFF" stroke-width="3" />
<line x1="0" y1="0" x2="-10" y2="0" stroke="#FFF" stroke-width="3" />
<text x="-8" y="5" font-family="Arial" font-size="8" fill="#000">12</text>
<text x="-8" y="-15" font-family="Arial" font-size="8" fill="#000">6</text>
<text x="10" y="3" font-family="Arial" font-size="8" fill="#000">3</text>
<text x="-10" y="3" font-family="Arial" font-size="8" fill="#000">9</text>
</g>
</svg>
Judge's Analysis
Player 2's submission more closely adheres to the prompt with a clear depiction of a sunflower and clock elements, capturing the essence of 'floating clock islands.' The composition and color scheme are vibrant and imaginative.
Player 1's image, while technically clean, lacks the recognizable sunflower element and has less visual impact.
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
"A single raccoon juggling ancient, glowing runes in a moonlit forest"
"Polar bear on a tropical beach, sipping coconut drink under a palm tree"
"Flamingo wearing roller skates on a rainbow path"
"Ballerina balancing on a tightrope above a cityscape during a vibrant sunset"
"A disco ball moon over a city of dancing skyscrapers"
"Lemon-shaped hot air balloon over a surreal purple ocean"