Creative Challenge
"Clockwork owl in flight, gears and cogs visible through translucent wings"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="owlBodyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FF8C00" />
</radialGradient>
<radialGradient id="wingGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="rgba(255, 215, 0, 0.5)" />
<stop offset="100%" stop-color="rgba(255, 140, 0, 0.2)" />
</radialGradient>
<pattern id="gearPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="4" stroke="grey" stroke-width="1" fill="none" />
<line x1="0" y1="5" x2="10" y2="5" stroke="grey" stroke-width="1" />
<line x1="5" y1="0" x2="5" y2="10" stroke="grey" stroke-width="1" />
</pattern>
</defs>
<g transform="translate(150, 150)">
<ellipse cx="0" cy="0" rx="30" ry="40" fill="url(#owlBodyGradient)" />
<circle cx="-10" cy="-10" r="5" fill="black" />
<circle cx="10" cy="-10" r="5" fill="black" />
<path d="M-15,10 Q0,20 15,10" fill="none" stroke="black" stroke-width="2" />
<g transform="rotate(-30)">
<polygon points="0,-40 40,-80 0,-60" fill="url(#wingGradient)" stroke="none" />
<polygon points="0,-40 -40,-80 0,-60" fill="url(#wingGradient)" stroke="none" />
<ellipse cx="20" cy="-60" rx="10" ry="3" fill="url(#gearPattern)" />
<ellipse cx="-20" cy="-60" rx="10" ry="3" fill="url(#gearPattern)" />
</g>
<g transform="rotate(30)">
<polygon points="0,-40 40,-80 0,-60" fill="url(#wingGradient)" stroke="none" />
<polygon points="0,-40 -40,-80 0,-60" fill="url(#wingGradient)" stroke="none" />
<ellipse cx="20" cy="-60" rx="10" ry="3" fill="url(#gearPattern)" />
<ellipse cx="-20" cy="-60" rx="10" ry="3" fill="url(#gearPattern)" />
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="bodyGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#e0c080"/>
<stop offset="100%" stop-color="#806040"/>
</radialGradient>
<pattern id="gearPattern" width="30" height="30" patternUnits="userSpaceOnUse">
<circle cx="15" cy="15" r="6" fill="none" stroke="#634d2a" stroke-width="2"/>
<path d="M15,9 L15,21 M9,15 L21,15" stroke="#634d2a" stroke-width="2"/>
</pattern>
</defs>
<!-- Wings -->
<path d="M150,150 Q50,100 80,50 Q150,20 220,50 Q250,100 150,150" fill="rgba(255,255,255,0.3)" stroke="#gold"/>
<path d="M150,150 Q50,200 80,250 Q150,280 220,250 Q250,200 150,150" fill="rgba(255,255,255,0.3)" stroke="#gold"/>
<!-- Gears in wings -->
<g opacity="0.7">
<circle cx="100" cy="100" r="20" fill="none" stroke="#brass" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="0 100 100" to="360 100 100" dur="10s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="100" r="15" fill="none" stroke="#brass" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="360 200 100" to="0 200 100" dur="8s" repeatCount="indefinite"/>
</circle>
<circle cx="100" cy="200" r="18" fill="none" stroke="#brass" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="360 100 200" to="0 100 200" dur="12s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="200" r="22" fill="none" stroke="#brass" stroke-width="2">
<animateTransform attributeName="transform" type="rotate" from="0 200 200" to="360 200 200" dur="15s" repeatCount="indefinite"/>
</circle>
</g>
<!-- Body -->
<ellipse cx="150" cy="150" rx="40" ry="60" fill="url(#bodyGrad)"/>
<!-- Face -->
<circle cx="150" cy="130" r="30" fill="#806040"/>
<circle cx="140" cy="125" r="10" fill="#000">
<animate attributeName="r" values="10;8;10" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="160" cy="125" r="10" fill="#000">
<animate attributeName="r" values="10;8;10" dur="2s" repeatCount="indefinite"/>
</circle>
<!-- Beak -->
<path d="M145,135 L155,135 L150,145 Z" fill="#ffd700"/>
<!-- Clockwork details -->
<g fill="none" stroke="#634d2a" stroke-width="1">
<circle cx="150" cy="160" r="15"/>
<path d="M150,160 L150,150"/>
<path d="M150,160 L158,165"/>
</g>
<!-- Decorative gears -->
<circle cx="130" cy="170" r="8" fill="url(#gearPattern)">
<animateTransform attributeName="transform" type="rotate" from="0 130 170" to="360 130 170" dur="6s" repeatCount="indefinite"/>
</circle>
<circle cx="170" cy="170" r="8" fill="url(#gearPattern)">
<animateTransform attributeName="transform" type="rotate" from="360 170 170" to="0 170 170" dur="6s" repeatCount="indefinite"/>
</circle>
</svg>
Judge's Analysis
Player 2's submission more closely adheres to the prompt by depicting an owl with visible gears and cogs in its design, capturing the clockwork theme effectively.
The translucent wings are also represented, which aligns with the idea of showing the inner mechanics.
Player 1's image, while creative, does not reflect the concept of a clockwork owl or translucent wings as clearly.
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
"Stilt-walking robot in a dessert cafe"
"Tree with clockwork gears for foliage against a full moon"
"An umbrella made of clouds, raining colorful candy drops"
"Juggling octopus wearing neon roller skates"
"Whale painting a starry night sky with its tail"
"Floating enchanted cactus with lunar eyes in a starlit desert"