Creative Challenge
"Floating city above a candy-cane forest"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" style="stop-color: #FFD700; stop-opacity: 1" />
<stop offset="1" style="stop-color: #FF69B4; stop-opacity: 1" />
</linearGradient>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" style="stop-color: #87CEEB; stop-opacity: 1" />
<stop offset="1" style="stop-color: #1E90FF; stop-opacity: 1" />
</linearGradient>
<linearGradient id="caneGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" style="stop-color: #FF7F50; stop-opacity: 1" />
<stop offset="1" style="stop-color: #FF4500; stop-opacity: 1" />
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<g transform="translate(150, 100)">
<circle cx="0" cy="0" r="30" fill="url(#cityGradient)" />
<circle cx="50" cy="-40" r="20" fill="url(#cityGradient)" />
<circle cx="-50" cy="-40" r="20" fill="url(#cityGradient)" />
<circle cx="0" cy="-80" r="15" fill="url(#cityGradient)" />
<circle cx="30" cy="-120" r="15" fill="url(#cityGradient)" />
<circle cx="-30" cy="-120" r="15" fill="url(#cityGradient)" />
</g>
<g transform="translate(0, 150)">
<rect x="0" y="0" width="300" height="150" fill="url(#caneGradient)" />
<rect x="10" y="10" width="280" height="130" fill="url(#caneGradient)" />
</g>
<g transform="translate(150, 220)">
<line x1="-50" y1="0" x2="50" y2="0" stroke="white" stroke-width="3" />
<line x1="0" y1="10" x2="0" y2="-10" stroke="white" stroke-width="3" />
<line x1="-40" y1="5" x2="40" y2="-5" stroke="white" stroke-width="3" />
<line x1="40" y1="5" x2="-40" y2="-5" stroke="white" stroke-width="3" />
<circle cx="0" cy="0" r="5" fill="white" />
</g>
<g transform="translate(0, 150)">
<path d="M50,150 L100,200 Q150,150 200,200 T250,150" stroke="white" stroke-width="3" fill="none" />
<path d="M100,150 L150,200 Q200,150 250,200 T300,150" stroke="white" stroke-width="3" fill="none" />
<path d="M0,150 L50,200 Q100,150 150,200 T200,150" stroke="white" stroke-width="3" fill="none" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with gradient sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Sky gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4b0082;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Candy Cane Forest -->
<g id="forest">
<!-- Candy cane pattern -->
<pattern id="candyPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="8" height="16" fill="#ff0000" rx="2" />
<rect x="2" y="0" width="8" height="16" fill="#ffffff" rx="2" />
</pattern>
<!-- Forest floor -->
<rect x="0" y="200" width="300" height="100" fill="#00ff00" />
<!-- Candy canes -->
<rect x="50" y="220" width="10" height="60" fill="url(#candyPattern)" transform="rotate(15 100,220)" />
<rect x="80" y="220" width="10" height="60" fill="url(#candyPattern)" transform="rotate(-15 100,220)" />
<rect x="110" y="220" width="10" height="60" fill="url(#candyPattern)" transform="rotate(5 100,220)" />
<rect x="140" y="220" width="10" height="60" fill="url(#candyPattern)" transform="rotate(-5 100,220)" />
<rect x="170" y="220" width="10" height="60" fill="url(#candyPattern)" transform="rotate(10 100,220)" />
<rect x="200" y="220" width="10" height="60" fill="url(#candyPattern)" transform="rotate(-10 100,220)" />
</g>
<!-- Floating City -->
<g id="city" transform="translate(50,50)">
<!-- City base -->
<rect x="0" y="0" width="200" height="150" fill="url(#cityGradient)" rx="20" />
<!-- City gradient -->
<defs>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="150">
<stop offset="0%" style="stop-color:#4b0082;stop-opacity:1" />
<stop offset="100%" style="stop-color:#6a5acd;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Towers -->
<rect x="10" y="10" width="20" height="130" fill="url(#cityGradient)" rx="5" />
<rect x="170" y="10" width="20" height="130" fill="url(#cityGradient)" rx="5" />
<!-- Central Dome -->
<ellipse cx="100" cy="70" rx="40" ry="30" fill="url(#domeGradient)" />
<!-- Dome gradient -->
<defs>
<linearGradient id="domeGradient" x1="0" y1="0" x2="0" y2="60">
<stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffffff;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Windows and details -->
<rect x="90" y="50" width="20" height="20" fill="#ffffff" rx="3" />
<rect x="110" y="50" width="20" height="20" fill="#ffffff" rx="3" />
<!-- Sparkle on dome -->
<path d="M100,40 L105,35 L115,40 L110,45 L100,40" fill="#ffffff" />
</g>
<!-- Clouds -->
<g id="clouds">
<circle cx="250" cy="80" r="20" fill="#ffffff" opacity="0.8" blur="5" />
<circle cx="280" cy="60" r="15" fill="#ffffff" opacity="0.8" blur="5" />
<circle cx="220" cy="100" r="10" fill="#ffffff" opacity="0.8" blur="5" />
</g>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="30" r="1" fill="#ffffff" />
<circle cx="80" cy="20" r="1" fill="#ffffff" />
<circle cx="120" cy="40" r="1" fill="#ffffff" />
<circle cx="160" cy="35" r="1" fill="#ffffff" />
<circle cx="200" cy="25" r="1" fill="#ffffff" />
</g>
</svg>
Judge's Analysis
Player 2's submission creatively interprets the prompt with a bold and colorful depiction of a floating city above a candy-cane forest.
The vibrant colors and distinct shapes effectively capture the whimsical nature of the idea.
In contrast, Player 1's image lacks clear representation of a city or a candy-cane forest, making it less successful in adhering 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
"Levitation tea party with floating teacups and pastries"
"Moonlit snail in a top hat juggling stars"
"Rainbow octopus in a Victorian tea party setting"
"Dolphin playing chess with a robot atop an iceberg"
"Flamingo on a skateboard, wearing sunglasses and sipping a smoothie"
"Frog in a vintage scuba suit dancing with jellyfish"