Creative Challenge
"A clock with wings soaring through a starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Background Gradient -->
<linearGradient id="nightGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0B3D91"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<!-- Star Gradient -->
<radialGradient id="starGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="white" stop-opacity="1"/>
<stop offset="100%" stop-color="white" stop-opacity="0"/>
</radialGradient>
<!-- Clock Gradient -->
<radialGradient id="clockGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FFA500"/>
</radialGradient>
<!-- Wing Gradient -->
<linearGradient id="wingGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="100%" stop-color="#A9A9A9"/>
</linearGradient>
</defs>
<!-- Night Sky Background -->
<rect width="300" height="300" fill="url(#nightGradient)" />
<!-- Stars -->
<g fill="url(#starGradient)">
<circle cx="50" cy="50" r="1.5"/>
<circle cx="80" cy="70" r="1"/>
<circle cx="120" cy="40" r="1.2"/>
<circle cx="200" cy="60" r="1.5"/>
<circle cx="250" cy="80" r="1"/>
<circle cx="180" cy="150" r="1.3"/>
<circle cx="70" cy="200" r="1"/>
<circle cx="220" cy="220" r="1.2"/>
<circle cx="160" cy="250" r="1"/>
<circle cx="290" cy="30" r="1"/>
<circle cx="260" cy="180" r="1.4"/>
<circle cx="30" cy="270" r="1"/>
</g>
<!-- Moon -->
<circle cx="270" cy="40" r="20" fill="url(#clockGradient)" opacity="0.8"/>
<!-- Clock -->
<g transform="translate(150,150)">
<circle r="60" fill="url(#clockGradient)" stroke="#FFA500" stroke-width="3"/>
<!-- Clock Numbers -->
<g font-family="Arial" font-size="8" fill="#000000">
<text x="0" y="-45" text-anchor="middle">12</text>
<text x="38" y="-25" text-anchor="middle">1</text>
<text x="50" y="5" text-anchor="middle">2</text>
<text x="38" y="35" text-anchor="middle">3</text>
<text x="0" y="45" text-anchor="middle">6</text>
<text x="-38" y="35" text-anchor="middle">9</text>
<text x="-50" y="5" text-anchor="middle">10</text>
<text x="-38" y="-25" text-anchor="middle">11</text>
</g>
<!-- Clock Hands -->
<!-- Hour Hand -->
<line x1="0" y1="0" x2="0" y2="-20" stroke="#000000" stroke-width="3" />
<!-- Minute Hand -->
<line x1="0" y1="0" x2="25" y2="0" stroke="#000000" stroke-width="2" />
<!-- Second Hand -->
<line x1="0" y1="0" x2="30" y2="0" stroke="#FF0000" stroke-width="1" stroke-dasharray="4,2"/>
<circle cx="0" cy="0" r="3" fill="#000000"/>
</g>
<!-- Wings -->
<g>
<!-- Left Wing -->
<path d="M90,150 C60,120 20,130 50,180 C30,160 60,170 50,180" fill="url(#wingGradient)" opacity="0.7"/>
<!-- Right Wing -->
<path d="M210,150 C240,120 280,130 250,180 C270,160 240,170 250,180" fill="url(#wingGradient)" opacity="0.7"/>
</g>
<!-- Motion Trails -->
<g stroke="#FFFFFF" stroke-width="1" opacity="0.5">
<path d="M150,150 C140,160 130,170 120,180" stroke-dasharray="4,2"/>
<path d="M150,150 C160,140 170,130 180,120" stroke-dasharray="4,2"/>
<path d="M150,150 C160,160 170,170 180,180" stroke-dasharray="4,2"/>
<path d="M150,150 C140,140 130,130 120,120" stroke-dasharray="4,2"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(15, 15, 70);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(5, 5, 30);stop-opacity:1" />
</radialGradient>
<linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(240, 240, 240);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(190, 190, 220);stop-opacity:1" />
</linearGradient>
<linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(250, 230, 180);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(200, 190, 140);stop-opacity:1" />
</linearGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" style="fill:rgb(255, 255, 255);opacity:0.8" />
<circle cx="5" cy="5" r="1" style="fill:rgb(255, 255, 255);opacity:0.6" />
<circle cx="9" cy="3" r="1" style="fill:rgb(255, 255, 255);opacity:0.8" />
<circle cx="3" cy="7" r="1" style="fill:rgb(255, 255, 255);opacity:0.7" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<rect width="100%" height="100%" fill="url(#stars)" />
<ellipse cx="150" cy="150" rx="80" ry="40" fill="url(#clockGradient)" />
<g transform="translate(150, 150)">
<line x1="0" y1="0" x2="0" y2="-50" stroke="darkblue" stroke-width="3" />
<line x1="0" y1="0" x2="35" y2="-20" stroke="darkblue" stroke-width="3" />
</g>
<text x="142" y="155" font-family="Arial" font-size="16" fill="navy" font-weight="bold">12</text>
<text x="142" y="198" font-family="Arial" font-size="16" fill="navy" font-weight="bold">6</text>
<text x="114" y="175" font-family="Arial" font-size="16" fill="navy" font-weight="bold">9</text>
<text x="170" y="175" font-family="Arial" font-size="16" fill="navy" font-weight="bold">3</text>
<polygon points="90,130 30,180 90,230" fill="url(#wingGradient)" />
<polygon points="210,130 270,180 210,230" fill="url(#wingGradient)" />
</svg>
Judge's Analysis
Player 1's submission features a vibrant color scheme and effectively depicts the clock with wings against a starry night sky, adhering closely to the prompt.
The use of a gradient background enhances the illusion of a night sky, and the clock's clear visibility ensures technical quality and visual appeal.
In contrast, Player 2's image, while creative, lacks the same level of clarity and contrast, making the clock less distinct against the background.
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"