Creative Challenge
"Clock with melting gears in a surreal desert landscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background Gradient -->
<defs>
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFC67D" />
<stop offset="100%" stop-color="#8B9467" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#bgGrad)" rx="10" />
<!-- Clock Body -->
<circle cx="150" cy="150" r="100" fill="#F7DC6F" stroke="#786C3B" stroke-width="2" />
<!-- Melting Gears -->
<path d="M150 70 L 120 120 A 100 100 0 1 0 140 200 L 150 180 Z" fill="#A8D7F5" stroke="#4C5154" stroke-width="1.5" />
<path d="M150 120 L 110 180 A 90 90 0 1 0 130 220 L 150 200 Z" fill="#A8D7F5" stroke="#4C5154" stroke-width="1.5" />
<path d="M150 170 L 100 220 A 80 80 0 1 0 120 240 L 150 220 Z" fill="#A8D7F5" stroke="#4C5154" stroke-width="1.5" />
<!-- Desert Landscape -->
<path d="M 10 200 C 100 250 250 150 290 200 L 290 290 L 10 290 Z" fill="#968F83" stroke="#786C3B" stroke-width="2" />
<path d="M 50 200 C 100 220 150 250 200 200 L 200 250 L 50 250 Z" fill="#968F83" stroke="#786C3B" stroke-width="1" />
<path d="M 100 150 C 150 180 200 200 250 150 L 250 200 L 100 200 Z" fill="#968F83" stroke="#786C3B" stroke-width="1" />
<!-- Cactus -->
<line x1="80" y1="280" x2="80" y2="220" stroke="#4C5154" stroke-width="5" />
<line x1="80" y1="240" x2="60" y2="180" stroke="#4C5154" stroke-width="3" />
<line x1="80" y1="240" x2="100" y2="180" stroke="#4C5154" stroke-width="3" />
<!-- Sun -->
<circle cx="270" cy="30" r="30" fill="#FFA07A" stroke="#FF9900" stroke-width="2" />
<line x1="270" y1="30" x2="290" y2="50" stroke="#FF9900" stroke-width="2" />
<line x1="270" y1="30" x2="250" y2="50" stroke="#FF9900" stroke-width="2" />
<line x1="270" y1="30" x2="280" y2="70" stroke="#FF9900" stroke-width="2" />
<line x1="270" y1="30" x2="260" y2="70" stroke="#FF9900" stroke-width="2" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert Landscape -->
<rect x="0" y="0" width="300" height="300" fill="#FAD7A0" />
<!-- Sun -->
<circle cx="250" cy="50" r="30" fill="#F9E79F" />
<!-- Clock with Melting Gears -->
<!-- Clock Body -->
<circle cx="150" cy="150" r="120" fill="#E74C3C" />
<!-- Clock Face -->
<circle cx="150" cy="150" r="100" fill="#ECECEC" />
<!-- Melting Gears -->
<!-- Gear 1 -->
<path d="M100 150 L90 120 L95 90 L105 90 L110 120 Z" fill="#2ECC71" />
<!-- Gear 2 -->
<path d="M200 150 L190 120 L195 90 L205 90 L210 120 Z" fill="#2ECC71" />
<!-- Clock Hands -->
<!-- Hour Hand -->
<line x1="150" y1="150" x2="170" y2="150" stroke="#F39C12" stroke-width="3" />
<!-- Minute Hand -->
<line x1="150" y1="150" x2="130" y2="170" stroke="#F39C12" stroke-width="2" />
<!-- Desert Details -->
<!-- Sand Dunes -->
<path d="M0 250 H20 Q30 220 50 250 T80 250 Q90 220 110 250 T140 250 Q150 220 170 250 T200 250 Q210 220 230 250 T260 250 Q270 220 300 250 L300 300 L0 300 Z" fill="#D35400" />
<!-- Cacti -->
<rect x="40" y="180" width="10" height="70" fill="#229954" />
<polygon points="70,200 80,250 60,250" fill="#229954" />
<rect x="120" y="170" width="10" height="80" fill="#229954" />
<polygon points="150,190 160,250 140,250" fill="#229954" />
<rect x="200" y="190" width="10" height="60" fill="#229954" />
<polygon points="230,210 240,250 220,250" fill="#229954" />
</svg>
Judge's Analysis
Player 2's image more effectively captures the surreal concept, with the melting clock face prominently displayed against a desert-like background.
The use of colors and the integration of the landscape elements enhance the surreal quality, adhering better to the prompt.
In contrast, Player 1's image lacks the clear representation of a clock or melting gears, making it less aligned with the theme.
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 flamingo wearing a superhero cape flying over city skyscrapers"
"Giant cat drinking from a teacup filled with stars"
"Levitating octopus juggling flaming comet balls"
"Snail in a top hat racing on a skateboard"
"A cat wearing a helmet, surfing a rainbow wave under a starry sky"
"Surreal clock with melting numbers and wings, floating in a cosmic sky"