Creative Challenge
"A clock-faced sunflower with its petals as moving clock hands"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Clock-faced sunflower center -->
<circle cx="150" cy="150" r="30" fill="#F2C464" />
<circle cx="150" cy="150" r="25" fill="#FFF" />
<text x="145" y="170" font-size="24" font-family="Arial" fill="#333" text-anchor="middle">12</text>
<!-- Petal clock hands -->
<g transform="rotate(0 150 150)">
<path d="M 150 80 C 160 130 180 150 200 140" stroke="#FF69B4" stroke-width="5" fill="none" />
</g>
<g transform="rotate(120 150 150)">
<path d="M 150 80 C 160 130 180 150 200 140" stroke="#33CC33" stroke-width="5" fill="none" />
</g>
<g transform="rotate(240 150 150)">
<path d="M 150 80 C 160 130 180 150 200 140" stroke="#6666CC" stroke-width="5" fill="none" />
</g>
<!-- Outer petals -->
<g>
<path d="M 150 120 C 180 100 200 130 220 140" fill="#F7DC6F" />
<path d="M 150 120 C 120 100 100 130 80 140" fill="#F7DC6F" />
<path d="M 150 180 C 180 160 200 190 220 200" fill="#F7DC6F" />
<path d="M 150 180 C 120 160 100 190 80 200" fill="#F7DC6F" />
</g>
<!-- Gradient shadow -->
<defs>
<radialGradient id="shadow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#000" stop-opacity="0.5" />
<stop offset="100%" stop-color="#000" stop-opacity="0" />
</radialGradient>
</defs>
<circle cx="150" cy="150" r="40" fill="url(#shadow)" />
<!-- Center detail -->
<circle cx="150" cy="150" r="10" fill="#333" />
<path d="M 145 155 L 155 155" stroke="#333" stroke-width="2" />
<path d="M 150 150 L 150 160" stroke="#333" stroke-width="2" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFEDD5"/>
<stop offset="100%" stop-color="#FBBF24"/>
</radialGradient>
<radialGradient id="clockFaceGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFF7E6"/>
<stop offset="100%" stop-color="#F59E0B"/>
</radialGradient>
<linearGradient id="petalGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FBBF24" />
<stop offset="100%" stop-color="#F59E0B" />
</linearGradient>
<pattern id="clockMarks" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1.5" fill="#F97316" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Central Clock Face -->
<circle cx="150" cy="150" r="60" fill="url(#clockFaceGradient)" stroke="#D97706" stroke-width="4"/>
<!-- Clock Numbers -->
<g font-family="Arial" font-size="12" fill="#B45309" text-anchor="middle">
<text x="150" y="130">12</text>
<text x="192" y="160">3</text>
<text x="150" y="190">6</text>
<text x="108" y="160">9</text>
</g>
<!-- Petals as Clock Hands -->
<g transform="translate(150,150)">
<!-- Define a petal shape -->
<defs>
<path id="petal" d="M0,0 L10,-100 Q12,-105 15,-100 L15,0 Z" fill="url(#petalGradient)" />
</defs>
<!-- Create multiple petals rotated around the center -->
<g>
<use href="#petal" transform="rotate(0)" />
<use href="#petal" transform="rotate(30)" />
<use href="#petal" transform="rotate(60)" />
<use href="#petal" transform="rotate(90)" />
<use href="#petal" transform="rotate(120)" />
<use href="#petal" transform="rotate(150)" />
<use href="#petal" transform="rotate(180)" />
<use href="#petal" transform="rotate(210)" />
<use href="#petal" transform="rotate(240)" />
<use href="#petal" transform="rotate(270)" />
<use href="#petal" transform="rotate(300)" />
<use href="#petal" transform="rotate(330)" />
</g>
</g>
<!-- Inner Details -->
<circle cx="150" cy="150" r="10" fill="#F97316" />
<circle cx="150" cy="150" r="5" fill="#EA580C" />
</svg>
Judge's Analysis
Player 2's submission better integrates the concept of a clock-faced sunflower.
The petals effectively serve as clock hands, and the overall composition is visually appealing with a warm color palette that enhances the sunflower theme.
Player 1's design is less cohesive and doesn't visually communicate the idea as clearly or attractively.
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
"Floating umbrella carrying a fish over a cityscape"
"Floating islands with dancing flamingos in the sky"
"An octopus wearing a top hat, juggling planets while riding a bicycle"
"A spaceship stuck in a giant jelly donut floating in space"
"Glowing jellyfish orbiting a tiny planet in a starry galaxy"
"Chameleon wearing sunglasses, sunbathing on a bright striped beach towel"