Creative Challenge
"Floating cityscape inside a giant soap bubble over a desert landscape"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #87CEEB; stop-opacity:1"/>
<stop offset="100%" style="stop-color: #1E5799; stop-opacity:1"/>
</linearGradient>
<linearGradient id="bubbleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color: #ADD8E6; stop-opacity:0.8"/>
<stop offset="100%" style="stop-color: #00BFFF; stop-opacity:0.8"/>
</linearGradient>
<pattern id="desertPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<rect width="10" height="10" fill="#F0E68C"/>
<circle cx="5" cy="5" r="1" fill="#FFD700"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="100" fill="url(#bubbleGradient)" stroke="#00BFFF" stroke-width="4"/>
<g transform="translate(0, -50)">
<rect x="-10" y="0" width="20" height="20" fill="#8A2BE2"/>
<rect x="-15" y="20" width="30" height="10" fill="#8A2BE2"/>
<rect x="-20" y="30" width="40" height="15" fill="#8A2BE2"/>
<circle cx="10" cy="10" r="5" fill="#FF69B4"/>
<circle cx="-10" cy="10" r="5" fill="#FF69B4"/>
<circle cx="0" cy="20" r="5" fill="#FF69B4"/>
</g>
</g>
<rect x="0" y="200" width="300" height="100" fill="url(#desertPattern)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient sky -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#E0F6FF;stop-opacity:1" />
</linearGradient>
<linearGradient id="bubbleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFB8FF;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#FFD700;stop-opacity:0.8" />
</linearGradient>
<pattern id="sandPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="2" fill="#D2B48C" />
</pattern>
</defs>
<!-- Desert landscape -->
<path d="M0 200 Q150 300 300 200 L300 300 L0 300 Z" fill="url(#sandPattern)"/>
<!-- Soap bubble -->
<ellipse cx="150" cy="150" rx="120" ry="100" fill="url(#bubbleGradient)" opacity="0.6" blur="5px"/>
<ellipse cx="150" cy="150" rx="120" ry="100" stroke="#FFFFFF" stroke-width="2" opacity="0.9" blur="3px"/>
<!-- Cityscape inside bubble -->
<g transform="translate(60 60)" opacity="0.8">
<!-- City buildings -->
<rect x="0" y="0" width="80" height="100" fill="#808080" rx="10"/>
<rect x="100" y="0" width="80" height="120" fill="#666666" rx="10"/>
<rect x="200" y="0" width="60" height="110" fill="#444444" rx="10"/>
<!-- Windows and details -->
<rect x="10" y="10" width="20" height="20" fill="#FFFFFF"/>
<rect x="30" y="10" width="20" height="20" fill="#FFFFFF"/>
<rect x="50" y="10" width="20" height="20" fill="#FFFFFF"/>
<!-- Central tower -->
<rect x="140" y="20" width="20" height="80" fill="#333333"/>
<circle cx="150" cy="10" r="10" fill="#333333"/>
</g>
<!-- Desert elements -->
<g transform="translate(0 200)">
<!-- Rocks -->
<circle cx="50" cy="10" r="5" fill="#8B4513"/>
<circle cx="100" cy="20" r="8" fill="#8B4513"/>
<circle cx="150" cy="15" r="6" fill="#8B4513"/>
<!-- Cactus -->
<path d="M250 0 L260 20 L250 40 L240 20 Z" fill="#00BFFF"/>
<path d="M250 30 L255 45 L245 45 Z" fill="#00BFFF"/>
</g>
<!-- Additional effects -->
<ellipse cx="150" cy="150" rx="120" ry="100" fill="none" stroke="#FFFFFF" stroke-width="1" opacity="0.3" blur="10px"/>
<!-- Birds -->
<path d="M10 100 L20 90 L30 100 Z" fill="#000000" transform="translate(50 50)"/>
<path d="M10 100 L20 90 L30 100 Z" fill="#000000" transform="translate(200 60)"/>
<!-- Hot air balloon -->
<ellipse cx="280" cy="50" rx="15" ry="10" fill="#FF6B6B"/>
<path d="M280 60 L280 70 L285 65 Z" fill="#FF6B6B"/>
<circle cx="280" cy="70" r="3" fill="#FF6B6B"/>
</svg>
Judge's Analysis
Player 1's image captures the concept of a floating cityscape within a soap bubble more effectively with its clear depiction of a structured element inside a defined bubble.
The color contrast between the bright bubble and the desert landscape enhances visual appeal.
Player 2's submission, while creative, lacks clarity in representing a cityscape and the bubble is less discernible, making Player 1's image a stronger representation of 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"