Creative Challenge
"Floating city made of musical instruments, geometric style"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(0,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
</linearGradient>
</defs>
<rect x="50" y="100" width="200" height="100" rx="30" fill="url(#grad1)" />
<polygon points="150,200 100,150 200,150" fill="url(#grad2)" />
<circle cx="150" cy="200" r="50" fill="url(#grad1)" />
<path d="M100,50 Q150,0 200,50" stroke="black" stroke-width="2" fill="none" />
<path d="M100,100 Q150,50 200,100" stroke="black" stroke-width="2" fill="none" />
<path d="M100,150 Q150,100 200,150" stroke="black" stroke-width="2" fill="none" />
<path d="M100,200 Q150,150 200,200" stroke="black" stroke-width="2" fill="none" />
<g transform="translate(150, 150)">
<rect x="-50" y="-50" width="100" height="100" fill="url(#grad2)" />
<rect x="-30" y="-30" width="60" height="60" fill="url(#grad1)" />
</g>
<g transform="translate(50, 50)">
<circle cx="0" cy="0" r="30" fill="url(#grad2)" />
<circle cx="0" cy="0" r="20" fill="url(#grad1)" />
</g>
<g transform="translate(250, 50)">
<circle cx="0" cy="0" r="30" fill="url(#grad2)" />
<circle cx="0" cy="0" r="20" fill="url(#grad1)" />
</g>
<g transform="translate(150, 250)">
<rect x="-50" y="-50" width="100" height="100" fill="url(#grad2)" />
<rect x="-30" y="-30" width="60" height="60" fill="url(#grad1)" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="gradSky" gradientUnits="userSpaceOnUse" x1="150" y1="0" x2="150" y2="300">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="100%" stop-color="#4682B4" />
</linearGradient>
<linearGradient id="gradInstrument" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="200">
<stop offset="0%" stop-color="#FF7F50" />
<stop offset="50%" stop-color="#FF6347" />
<stop offset="100%" stop-color="#FF4500" />
</linearGradient>
<radialGradient id="gradGlare" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="white" stop-opacity="0.7" />
<stop offset="100%" stop-color="none" stop-opacity="0" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#gradSky)" />
<g transform="translate(150, 150)">
<g transform="rotate(15)">
<path d="M-40,20 L-20,40 L0,30 L20,10 L40,0 L30,-20 L10,-40 L-10,-30 Z" fill="url(#gradInstrument)" />
<path d="M20,-50 L10,-70 L0,-60 L-10,-40 L-20,-30 L-40,-10 L-60,10 L-50,20 Z" fill="url(#gradInstrument)" />
<path d="M-60,-40 L-40,-60 L-20,-50 L0,-30 L20,-50 L40,-40 L50,-20 L60,0 L50,20 L40,40 L20,50 L0,30 Z" fill="url(#gradInstrument)" />
<ellipse cx="-20" cy="10" rx="10" ry="5" fill="rgba(255,255,255,0.5)" />
<ellipse cx="20" cy="-20" rx="10" ry="5" fill="rgba(255,255,255,0.5)" />
<circle cx="0" cy="0" r="10" fill="url(#gradGlare)" opacity="0.8" />
</g>
<g transform="rotate(-30)">
<path d="M-50,10 L-30,30 L-10,20 L10,0 L30,-20 L50,-10 L40,10 Z" fill="url(#gradInstrument)" />
<path d="M40,-40 L20,-60 L0,-50 L-20,-30 L-40,-10 L-60,10 L-50,30 Z" fill="url(#gradInstrument)" />
<ellipse cx="30" cy="-30" rx="6" ry="3" fill="rgba(255,255,255,0.4)" />
<ellipse cx="-30" cy="0" rx="6" ry="3" fill="rgba(255,255,255,0.4)" />
</g>
</g>
<text x="10" y="290" font-family="Arial" font-size="16" fill="#fff" opacity="0.8">Floating City of Music</text>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by creating a more recognizable floating city with a geometric style.
The use of a gradient background enhances the visual appeal and suggests a sky or atmosphere, adding to the floating effect.
Player 1's image, while colorful, lacks clear representation of musical instruments or a city, making it less relevant to the prompt.
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
"Cat in a spacesuit floating above a moonlit ocean"
"Lonely penguin on a flamingo float in a desert oasis"
"Chameleon blending into a giant cosmic snail shell"
"A jellyfish cityscape at sunset"
"Giraffe in a scuba suit diving for coral in a colorful reef"
"Giraffe juggling planets in a cosmic circus ring"