Creative Challenge
"Steampunk jellyfish floating in a cosmic clockwork sea"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Cosmic Clockwork Sea Background -->
<rect width="300" height="300" fill="navy" />
<circle cx="150" cy="150" r="120" fill="transparent" stroke="white" stroke-width="3" />
<!-- Clockwork Gears -->
<g transform="rotate(45 150 150)">
<circle cx="150" cy="150" r="50" fill="gray" />
<rect x="125" y="100" width="50" height="100" fill="gray" />
<rect x="100" y="125" width="100" height="50" fill="gray" />
<circle cx="150" cy="150" r="10" fill="white" />
<circle cx="150" cy="150" r="5" fill="black" />
</g>
<g transform="rotate(-45 150 150)">
<circle cx="150" cy="150" r="50" fill="gray" />
<rect x="125" y="100" width="50" height="100" fill="gray" />
<rect x="100" y="125" width="100" height="50" fill="gray" />
<circle cx="150" cy="150" r="10" fill="white" />
<circle cx="150" cy="150" r="5" fill="black" />
</g>
<!-- Steampunk Jellyfish -->
<circle cx="150" cy="100" r="30" fill="transparent" stroke="goldenrod" stroke-width="2" />
<circle cx="130" cy="80" r="10" fill="goldenrod" />
<circle cx="170" cy="80" r="10" fill="goldenrod" />
<ellipse cx="150" cy="120" rx="20" ry="10" fill="goldenrod" />
<path d="M150 120 C140 140,160 140,150 160" fill="none" stroke="goldenrod" stroke-width="2" />
<!-- Cosmic Stars -->
<circle cx="50" cy="50" r="2" fill="white" />
<circle cx="100" cy="200" r="2" fill="white" />
<circle cx="200" cy="100" r="2" fill="white" />
<circle cx="250" cy="250" r="2" fill="white" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<radialGradient id="cosmicGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:purple;stop-opacity:1" />
<stop offset="100%" style="stop-color:black;stop-opacity:1" />
</radialGradient>
<linearGradient id="jellyfishGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:gold;stop-opacity:1" />
<stop offset="100%" style="stop-color:orangered;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#cosmicGradient)" />
<!-- Jellyfish Body -->
<circle cx="150" cy="120" r="40" fill="url(#jellyfishGradient)" stroke="darkorange" stroke-width="3" />
<ellipse cx="150" cy="120" rx="45" ry="15" fill="transparent" stroke="brown" stroke-width="2" />
<!-- Jellyfish Tentacles -->
<g fill="none" stroke="orangered" stroke-width="2">
<path d="M150,160 Q140,200 110,280" />
<path d="M150,160 Q160,230 190,300" />
<path d="M150,160 Q130,220 150,300" />
<path d="M150,160 Q170,200 200,280" />
<path d="M150,160 Q120,190 120,270" />
<path d="M150,160 Q180,190 180,260" />
</g>
<!-- Clockwork Gears -->
<g transform="translate(80, 80)">
<circle cx="0" cy="0" r="30" fill="gold" />
<circle cx="0" cy="0" r="26" fill="none" stroke="darkorange" stroke-width="8" />
<line x1="-18" y1="0" x2="-30" y2="0" stroke="brown" stroke-width="4" />
<line x1="0" y1="18" x2="0" y2="30" stroke="brown" stroke-width="4" />
<line x1="18" y1="0" x2="30" y2="0" stroke="brown" stroke-width="4" />
<line x1="0" y1="-18" x2="0" y2="-30" stroke="brown" stroke-width="4" />
</g>
<g transform="translate(200, 200)">
<circle cx="0" cy="0" r="20" fill="gold" />
<line x1="0" y1="20" x2="0" y2="0" stroke="darkorange" stroke-width="8" />
<circle cx="0" cy="0" r="18" fill="none" stroke="brown" stroke-width="6" />
<polygon points="0,-15 5,-5 -5,-5" fill="brown" />
</g>
<!-- Cosmic Stars -->
<g fill="white">
<circle cx="50" cy="50" r="2" />
<circle cx="250" cy="70" r="1.5" />
<circle cx="220" cy="180" r="1" />
<circle cx="30" cy="220" r="2.5" />
<circle cx="160" cy="270" r="1" />
</g>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the theme of a 'steampunk jellyfish floating in a cosmic clockwork sea' with its intricate design and vibrant colors.
The use of orange and purple creates a cosmic atmosphere, and the jellyfish is more clearly defined with tentacle-like elements.
Player 1's image is less detailed and does not convey the prompt as strongly in terms of visual appeal and complexity.
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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"