Creative Challenge
"A clock with tree branches instead of hands, geometric style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ece9e6"/>
<stop offset="100%" stop-color="#ffffff"/>
</radialGradient>
<linearGradient id="branchGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4e9258"/>
<stop offset="100%" stop-color="#a1d490"/>
</linearGradient>
<pattern id="clockPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="1" fill="#4e9258" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="100" fill="#ffffff" stroke="#4e9258" stroke-width="4"/>
<g>
<!-- Hour markers -->
<g stroke="#4e9258" stroke-width="2">
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(0)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(30)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(60)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(90)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(120)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(150)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(180)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(210)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(240)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(270)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(300)" />
<line x1="0" y1="-90" x2="0" y2="-100" transform="rotate(330)" />
</g>
<!-- Branch Hands -->
<g stroke="url(#branchGradient)" stroke-width="4">
<!-- Hour branch -->
<path d="M0,0 C20,-60 40,-60 60,0" fill="none" />
<!-- Minute branch -->
<path d="M0,0 C-20,-60 -40,-60 -60,0" fill="none" />
</g>
<!-- Leaves -->
<g fill="#a1d490">
<circle cx="60" cy="0" r="5"/>
<circle cx="-60" cy="0" r="5"/>
</g>
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background gradient -->
<defs>
<radialGradient id="backgroundGradient" cx="0.5" cy="0.5" r="0.5" fx="0.3" fy="0.3">
<stop offset="0%" stop-color="#ffefd5" />
<stop offset="100%" stop-color="#ffdab9" />
</radialGradient>
<linearGradient id="branchGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#8b4513" />
<stop offset="100%" stop-color="#deb887" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#backgroundGradient)" />
<!-- Clock face -->
<circle cx="150" cy="150" r="120" fill="white" stroke="#8b4513" stroke-width="5" />
<!-- Geometric tree branches as clock hands -->
<!-- Hour hand -->
<path d="M150,150 L130,90 Q145,70 160,90 Z" fill="url(#branchGradient)" transform="rotate(45,150,150)" />
<!-- Minute hand -->
<path d="M150,150 L140,60 Q155,40 170,60 Z" fill="url(#branchGradient)" transform="rotate(-30,150,150)" />
<!-- Clock center -->
<circle cx="150" cy="150" r="10" fill="#663300" />
<!-- Decorative geometric elements -->
<polygon points="150,30 140,50 160,50" fill="#f4a460" />
<polygon points="270,150 250,140 250,160" fill="#f4a460" />
<polygon points="150,270 140,250 160,250" fill="#f4a460" />
<polygon points="30,150 50,140 50,160" fill="#f4a460" />
<!-- Numerals -->
<text x="143" y="40" font-family="Arial" font-size="16" fill="#8b4513">12</text>
<text x="230" y="163" font-family="Arial" font-size="16" fill="#8b4513">3</text>
<text x="143" y="265" font-family="Arial" font-size="16" fill="#8b4513">6</text>
<text x="50" y="163" font-family="Arial" font-size="16" fill="#8b4513">9</text>
</svg>
Judge's Analysis
Player 1's submission creatively interprets the prompt by incorporating a branch-like feature for the clock hands, maintaining a geometric style with curved lines.
It effectively combines natural elements with a simple, geometric aesthetic.
Player 2's submission, while technically polished, lacks the integration of tree branches as hands and leans more towards a traditional clock design.
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
"Frog in space suit playing guitar on a comet"
"A dragon knitting a scarf with flaming yarn"
"Saxophone-playing cat under a crescent moon"
"Floating islands connected by glowing bridges"
"Mermaid in a library, surrounded by floating books"
"Surrealist clock melting in a desert landscape"