Creative Challenge
"Upside-down castle floating amongst clouds"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#4682B4"/>
</linearGradient>
<linearGradient id="cloudGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="100%" stop-color="#F0F8FF"/>
</linearGradient>
<linearGradient id="castleGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#8B4513"/>
<stop offset="100%" stop-color="#A0522D"/>
</linearGradient>
<pattern id="stonePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#808080"/>
<circle cx="5" cy="5" r="2" fill="#A9A9A9"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<g id="clouds">
<ellipse cx="50" cy="80" rx="40" ry="20" fill="url(#cloudGradient)"/>
<ellipse cx="120" cy="60" rx="50" ry="25" fill="url(#cloudGradient)"/>
<ellipse cx="200" cy="90" rx="60" ry="30" fill="url(#cloudGradient)"/>
<ellipse cx="280" cy="70" rx="40" ry="20" fill="url(#cloudGradient)"/>
</g>
<g id="upsideDownCastle" transform="translate(150, 150) scale(1, -1)">
<rect x="-50" y="-100" width="100" height="200" fill="url(#castleGradient)"/>
<polygon points="0,-120 -30,-80 30,-80" fill="#B8860B"/>
<rect x="-30" y="-100" width="60" height="20" fill="#654321"/>
<rect x="-40" y="-80" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="-20" y="-80" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="0" y="-80" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="20" y="-80" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="-40" y="-60" width="80" height="40" fill="url(#castleGradient)"/>
<rect x="-30" y="-50" width="60" height="20" fill="#654321"/>
<rect x="-40" y="-30" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="-20" y="-30" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="0" y="-30" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="20" y="-30" width="10" height="20" fill="url(#stonePattern)"/>
<rect x="-50" y="-10" width="100" height="20" fill="url(#castleGradient)"/>
<polygon points="0,10 -30,50 30,50" fill="#B8860B"/>
<rect x="-30" y="10" width="60" height="20" fill="#654321"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="cloudGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#fff" />
<stop offset="100%" stop-color="#ccc" />
</linearGradient>
<linearGradient id="castleGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#6c5ce7" />
<stop offset="100%" stop-color="#c75ae6" />
</linearGradient>
</defs>
<g>
<path d="M150 250 Q100 200 100 150 T150 50 T200 150 T200 250 Z" fill="url(#castleGradient)" />
<circle cx="100" cy="150" r="30" fill="url(#castleGradient)" />
<circle cx="200" cy="150" r="30" fill="url(#castleGradient)" />
<path d="M100 150 L120 130 L140 150" fill="url(#castleGradient)" />
<path d="M200 150 L180 130 L160 150" fill="url(#castleGradient)" />
</g>
<g>
<path d="M30 100 Q100 200 150 150 T270 100" fill="url(#cloudGradient)" />
<path d="M100 120 Q150 220 200 120" fill="url(#cloudGradient)" />
<path d="M50 150 Q100 250 150 150 T250 150" fill="url(#cloudGradient)" />
</g>
</svg>
Judge's Analysis
Player 1's image directly adheres to the prompt by depicting an upside-down castle with distinguishable architectural features, floating amongst clouds, thereby capturing the essence of the theme.
The use of color and clear representation of clouds enhances the visual appeal and clarity of the concept.
Player 2's image, while creative, lacks clear adherence to the theme, as the abstract forms do not distinctly convey the idea of a castle or clouds.
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
"Reclining cat floating on a cloud, juggling fish in a starry sky"
"Umbrella-toting octopus in a rainstorm of candy"
"Penguin in a top hat riding a unicycle on icy terrain"
"Rainbow octopus juggling flaming maracas"
"Robot tea party with squirrels on the moon"
"Rainbow zebra on a unicycle juggling flamingos"