Creative Challenge
"Penguin in a spacesuit juggling planets, geometric style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="spaceGrad" x1="0" y1="0" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop stop-color="#0b0b2d" offset="0"/>
<stop stop-color="#1a1a4a" offset="1"/>
</linearGradient>
<linearGradient id="suitGrad" x1="0" y1="0" x2="0" y2="100" gradientUnits="userSpaceOnUse">
<stop stop-color="#3b3b9d" offset="0"/>
<stop stop-color="#1a1a4a" offset="1"/>
</linearGradient>
<pattern id="planetPattern" x="0" y="0" width="100%" height="100%" patternUnits="userSpaceOnUse">
<circle cx="50" cy="50" r="40" fill="#ff6b6b" opacity="0.5"/>
<circle cx="50" cy="50" r="30" fill="#ff6b6b" opacity="0.3"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#spaceGrad)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="150" cy="80" r="1" fill="white"/>
<circle cx="250" cy="60" r="1" fill="white"/>
<circle cx="120" cy="180" r="1" fill="white"/>
<circle cx="180" cy="220" r="1" fill="white"/>
<circle cx="80" cy="250" r="1" fill="white"/>
</g>
<!-- Penguin -->
<g transform="translate(150,200)">
<!-- Body -->
<rect x="-40" y="-60" width="80" height="120" fill="url(#suitGrad)" rx="20"/>
<!-- Head -->
<circle cx="0" cy="-90" r="30" fill="#ffffff"/>
<!-- Flippers -->
<path d="M-35,-50 L-25,-70 L-15,-50 L-35,-50 Z" fill="#ffffff"/>
<path d="M35,-50 L25,-70 L15,-50 L35,-50 Z" fill="#ffffff"/>
</g>
<!-- Planets -->
<g>
<!-- Planet 1 -->
<g transform="translate(100,100)">
<circle r="25" fill="url(#planetPattern)"/>
<circle r="15" fill="#ff6b6b" transform="rotate(30)"/>
<path d="M0,0 Q50,50 100,0" fill="none" stroke="#ff6b6b" stroke-width="2"/>
</g>
<!-- Planet 2 -->
<g transform="translate(200,150)">
<circle r="30" fill="#87CEEB" opacity="0.8"/>
<path d="M-50,0 Q0,50 50,0" fill="#87CEEB" opacity="0.5"/>
<circle cx="0" cy="0" r="10" fill="#ffffff" opacity="0.8"/>
</g>
<!-- Planet 3 -->
<g transform="translate(50,250)">
<circle r="20" fill="#ffd700" opacity="0.9"/>
<circle cx="0" cy="0" r="5" fill="#ffffff" opacity="0.8"/>
<path d="M0,0 Q-40,30 -80,0" fill="none" stroke="#ffd700" stroke-width="2"/>
</g>
</g>
<!-- Juggling Lines -->
<path d="M100,100 Q150,50 200,100" fill="none" stroke="#ffffff" stroke-width="2"/>
<path d="M200,150 Q250,100 300,150" fill="none" stroke="#ffffff" stroke-width="2"/>
<path d="M50,250 Q100,200 150,250" fill="none" stroke="#ffffff" stroke-width="2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="black" />
<!-- Starfield -->
<circle cx="50" cy="40" r="2" fill="white" />
<circle cx="120" cy="80" r="1.5" fill="white" />
<circle cx="200" cy="40" r="2" fill="white" />
<circle cx="260" cy="100" r="2" fill="white" />
<circle cx="80" cy="200" r="1.5" fill="white" />
<circle cx="180" cy="250" r="2" fill="white" />
<!-- Penguin Body -->
<ellipse cx="150" cy="180" rx="30" ry="60" fill="url(#penguinGradient)" />
<linearGradient id="penguinGradient" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#000000" />
</linearGradient>
<!-- Spacesuit -->
<rect x="130" y="80" width="40" height="100" rx="15" ry="15" fill="gray" />
<ellipse cx="150" cy="80" rx="20" ry="10" fill="url(#visorGradient)" />
<linearGradient id="visorGradient" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#00ccff" />
<stop offset="100%" stop-color="#0000ff" />
</linearGradient>
<!-- Penguin Flippers -->
<polygon points="130,140 115,170 140,160" fill="#333" />
<polygon points="170,140 185,170 160,160" fill="#333" />
<!-- Penguin Beak -->
<polygon points="148,100 152,100 150,110" fill="#ff9933" />
<!-- Penguin Eyes -->
<circle cx="142" cy="92" r="3" fill="white" />
<circle cx="158" cy="92" r="3" fill="white" />
<circle cx="142" cy="92" r="1" fill="black" />
<circle cx="158" cy="92" r="1" fill="black" />
<!-- Planets -->
<circle cx="100" cy="60" r="12" fill="url(#planet1Gradient)" />
<radialGradient id="planet1Gradient">
<stop offset="30%" stop-color="#ff6666" />
<stop offset="100%" stop-color="#990000" />
</radialGradient>
<circle cx="200" cy="40" r="9" fill="url(#planet2Gradient)" />
<radialGradient id="planet2Gradient">
<stop offset="30%" stop-color="#66ff66" />
<stop offset="100%" stop-color="#009900" />
</radialGradient>
<circle cx="180" cy="120" r="15" fill="url(#planet3Gradient)" />
<radialGradient id="planet3Gradient">
<stop offset="30%" stop-color="#6666ff" />
<stop offset="100%" stop-color="#000099" />
</radialGradient>
<!-- Juggling Trails -->
<path d="M100,60 Q130,100 180,120" stroke="white" stroke-width="2" fill="none" />
<path d="M180,120 Q200,80 200,40" stroke="white" stroke-width="2" fill="none" />
<path d="M200,40 Q180,20 100,60" stroke="white" stroke-width="2" fill="none" />
</svg>
Judge's Analysis
Player 1's submission excels in creativity and adherence to the prompt by capturing the geometric style effectively with clean lines and vibrant colors.
The depiction of planets with dynamic curves adds motion and interest.
While Player 2's image is also creative, the geometric style is less pronounced, making Player 1's composition more visually appealing and technically aligned with 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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"