Creative Challenge
"Floating island with a tiny village, eclipsed by a colossal hovering jellyfish"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky Gradient -->
<linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="100%" stop-color="#4682B4" />
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
<!-- Island -->
<g transform="translate(120, 150)">
<ellipse cx="0" cy="0" rx="40" ry="20" fill="#964B00" />
<path d="M -30 -10 C -20 -10, -10 -20, 0 -10 C 10 -20, 20 -10, 30 -10" stroke="#964B00" stroke-width="2" fill="none" />
<path d="M -10 -15 C 0 -25, 10 -25, 10 -15" stroke="#964B00" stroke-width="2" fill="none" />
</g>
<!-- Village -->
<g transform="translate(130, 160)">
<rect x="0" y="0" width="10" height="10" fill="#FFC080" />
<rect x="15" y="0" width="10" height="10" fill="#FFC080" />
<rect x="30" y="0" width="10" height="10" fill="#FFC080" />
<path d="M 5 10 L 5 20" stroke="#FFC080" stroke-width="2" />
<path d="M 20 10 L 20 20" stroke="#FFC080" stroke-width="2" />
<path d="M 35 10 L 35 20" stroke="#FFC080" stroke-width="2" />
</g>
<!-- Jellyfish -->
<g transform="translate(150, 50)">
<circle cx="0" cy="0" r="80" fill="#00BFFF" opacity="0.5" />
<path d="M 0 -80 C -40 -40, 40 -40, 0 0 C -40 40, 40 40, 0 80" stroke="#00BFFF" stroke-width="4" fill="none" />
<path d="M 0 0 C 20 20, 40 40, 60 60" stroke="#00BFFF" stroke-width="4" fill="none" />
<path d="M 0 0 C -20 20, -40 40, -60 60" stroke="#00BFFF" stroke-width="4" fill="none" />
<path d="M 0 0 C 20 -20, 40 -40, 60 -60" stroke="#00BFFF" stroke-width="4" fill="none" />
<path d="M 0 0 C -20 -20, -40 -40, -60 -60" stroke="#00BFFF" stroke-width="4" fill="none" />
</g>
<!-- Eclipse Shadow -->
<ellipse cx="150" cy="50" rx="100" ry="80" fill="#000000" opacity="0.2" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#001f3f"/>
<stop offset="100%" stop-color="#0074D9"/>
</linearGradient>
<linearGradient id="jellyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FF4136"/>
<stop offset="50%" stop-color="#FF851B"/>
<stop offset="100%" stop-color="#FFDC00"/>
</linearGradient>
<radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#2ECC40"/>
<stop offset="100%" stop-color="#3D9970"/>
</radialGradient>
<pattern id="villagePattern" width="4" height="4" patternUnits="userSpaceOnUse">
<rect width="4" height="4" fill="#FF851B"/>
<path d="M0 0L4 4M4 0L0 4" stroke="#85144b" stroke-width="0.5"/>
</pattern>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
<!-- Colossal hovering jellyfish (eclipsing element) -->
<g id="jellyfish" opacity="0.8">
<!-- Bell of jellyfish -->
<ellipse cx="150" cy="80" rx="70" ry="45" fill="url(#jellyGradient)" stroke="#85144b" stroke-width="2"/>
<!-- Tentacles -->
<g stroke="#FF4136" stroke-width="2" fill="none">
<path d="M120,100 C115,130 100,140 90,170" />
<path d="M130,100 C125,135 110,145 100,175" />
<path d="M140,100 C135,140 120,155 110,185" />
<path d="M150,100 C145,135 130,150 120,180" />
<path d="M160,100 C155,140 140,155 130,185" />
<path d="M170,100 C165,135 150,150 140,180" />
<path d="M180,100 C175,130 160,140 150,170" />
</g>
</g>
<!-- Floating island -->
<g id="island">
<!-- Island base shape with organic curves -->
<path d="M90,220 C70,210 50,240 60,265 C80,275 220,275 240,265 C250,240 230,210 210,220 C190,210 110,210 90,220" fill="url(#islandGradient)" stroke="#2ECC40" stroke-width="2"/>
<!-- Shadow for island -->
<ellipse cx="150" cy="275" rx="60" ry="10" fill="rgba(0,0,0,0.2)"/>
<!-- Tiny village -->
<g id="village">
<!-- House 1 -->
<g transform="translate(110,210)">
<rect x="0" y="0" width="12" height="10" fill="url(#villagePattern)" stroke="#85144b" stroke-width="0.5"/>
<polygon points="0,0 6, -6 12,0" fill="#FFDC00" stroke="#85144b" stroke-width="0.5"/>
</g>
<!-- House 2 -->
<g transform="translate(135,215)">
<rect x="0" y="0" width="10" height="8" fill="url(#villagePattern)" stroke="#85144b" stroke-width="0.5"/>
<polygon points="0,0 5, -5 10,0" fill="#FFDC00" stroke="#85144b" stroke-width="0.5"/>
</g>
<!-- House 3 -->
<g transform="translate(155,205)">
<rect x="0" y="0" width="14" height="11" fill="url(#villagePattern)" stroke="#85144b" stroke-width="0.5"/>
<polygon points="0,0 7,-7 14,0" fill="#FFDC00" stroke="#85144b" stroke-width="0.5"/>
</g>
<!-- Tree -->
<g transform="translate(175,215)">
<rect x="6" y="6" width="2" height="6" fill="#8B4513"/>
<circle cx="7" cy="5" r="4" fill="#2ECC40" stroke="#3D9970" stroke-width="0.5"/>
</g>
<!-- Small detail: smoke from a chimney -->
<g transform="translate(110,210)">
<path d="M2, -2 q-2,-3 0,-6" stroke="#AAAAAA" stroke-width="0.5" fill="none" />
<path d="M4, -2 q-1,-2 1,-5" stroke="#AAAAAA" stroke-width="0.5" fill="none" />
</g>
</g>
</g>
<!-- Additional artistic embellishments: ethereal light beams -->
<g opacity="0.3">
<line x1="150" y1="0" x2="150" y2="300" stroke="white" stroke-width="1" stroke-dasharray="5,5" />
<line x1="0" y1="150" x2="300" y2="150" stroke="white" stroke-width="1" stroke-dasharray="5,5" />
</g>
</svg>
Judge's Analysis
Player 2's image presents a more vibrant and imaginative interpretation of the prompt with a clearly defined floating island and a colossal jellyfish.
The use of color and composition enhances the visual appeal, making the scene more dynamic and engaging.
In contrast, Player 1's submission lacks the same level of detail and creativity, resulting in a less captivating depiction.
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
"A turtle surfing a rainbow wave under a starry sky"
"Skateboarding octopus wearing a top hat, over a crescent moon"
"Futuristic cityscape reflected in a giant dragonfly's eye"
"Floating city on a turtle's back, under a starry sky"
"Floating cityscape on an iceberg, under a starry sky"
"Frog wearing a space helmet, surfing on a comet, with a backdrop of swirling galaxies"