Creative Challenge
"Astronaut squirrel juggling planets, in a geometric style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Definitions for gradients and patterns -->
<defs>
<!-- Space background gradient -->
<linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#0f0c29" />
<stop offset="50%" stop-color="#302b63" />
<stop offset="100%" stop-color="#24243e" />
</linearGradient>
<!-- Planet gradients -->
<radialGradient id="planet1Gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ff9966" />
<stop offset="100%" stop-color="#ff5e62" />
</radialGradient>
<radialGradient id="planet2Gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#4facfe" />
<stop offset="100%" stop-color="#00f2fe" />
</radialGradient>
<radialGradient id="planet3Gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#43e97b" />
<stop offset="100%" stop-color="#38f9d7" />
</radialGradient>
<radialGradient id="planet4Gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#fa709a" />
<stop offset="100%" stop-color="#fee140" />
</radialGradient>
<!-- Saturn-like ring gradient -->
<linearGradient id="ringGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ffcc00" stop-opacity="0.8" />
<stop offset="50%" stop-color="#ff9900" stop-opacity="0.6" />
<stop offset="100%" stop-color="#ffcc00" stop-opacity="0.8" />
</linearGradient>
<!-- Helmet visor gradient -->
<linearGradient id="visorGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#80d0c7" stop-opacity="0.8" />
<stop offset="100%" stop-color="#0093E9" stop-opacity="0.6" />
</linearGradient>
<!-- Spacesuit gradient -->
<linearGradient id="spacesuitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#cfd9df" />
</linearGradient>
<!-- Planet patterns -->
<pattern id="planetPattern1" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<polygon points="0,0 5,5 0,10" fill="#ff8866" />
<polygon points="10,0 5,5 10,10" fill="#ff7755" />
</pattern>
<pattern id="planetPattern2" x="0" y="0" width="8" height="8" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="4" height="4" fill="#38c6fe" />
<rect x="4" y="4" width="4" height="4" fill="#38c6fe" />
</pattern>
<!-- Shield emblem gradient -->
<linearGradient id="shieldGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff9a9e" />
<stop offset="100%" stop-color="#fad0c4" />
</linearGradient>
</defs>
<!-- Background with stars -->
<rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
<!-- Stars -->
<g id="stars">
<circle cx="20" cy="30" r="1" fill="white" />
<circle cx="40" cy="70" r="1.5" fill="white" />
<circle cx="65" cy="15" r="1" fill="white" />
<circle cx="90" cy="40" r="1.2" fill="white" />
<circle cx="120" cy="60" r="1" fill="white" />
<circle cx="150" cy="20" r="1.5" fill="white" />
<circle cx="180" cy="50" r="1" fill="white" />
<circle cx="210" cy="30" r="1.2" fill="white" />
<circle cx="240" cy="70" r="1" fill="white" />
<circle cx="270" cy="20" r="1.5" fill="white" />
<circle cx="30" cy="100" r="1" fill="white" />
<circle cx="60" cy="130" r="1.2" fill="white" />
<circle cx="100" cy="110" r="1" fill="white" />
<circle cx="260" cy="110" r="1.5" fill="white" />
<circle cx="290" cy="140" r="1" fill="white" />
<circle cx="20" cy="170" r="1.2" fill="white" />
<circle cx="50" cy="200" r="1" fill="white" />
<circle cx="90" cy="220" r="1.5" fill="white" />
<circle cx="130" cy="170" r="1" fill="white" />
<circle cx="170" cy="190" r="1.2" fill="white" />
<circle cx="210" cy="210" r="1" fill="white" />
<circle cx="250" cy="240" r="1.5" fill="white" />
<circle cx="270" cy="200" r="1" fill="white" />
<circle cx="290" cy="280" r="1.2" fill="white" />
<circle cx="200" cy="270" r="1" fill="white" />
<circle cx="150" cy="250" r="1.5" fill="white" />
<circle cx="100" cy="270" r="1" fill="white" />
<circle cx="50" cy="240" r="1.2" fill="white" />
<!-- Twinkling stars -->
<circle cx="45" cy="85" r="2" fill="white">
<animate attributeName="opacity" values="1;0.5;1" dur="3s" repeatCount="indefinite" />
</circle>
<circle cx="245" cy="185" r="2" fill="white">
<animate attributeName="opacity" values="0.5;1;0.5" dur="4s" repeatCount="indefinite" />
</circle>
<circle cx="145" cy="65" r="2" fill="white">
<animate attributeName="opacity" values="0.7;1;0.7" dur="5s" repeatCount="indefinite" />
</circle>
</g>
<!-- Geometric constellations -->
<g id="constellations" stroke="rgba(255,255,255,0.3)" stroke-width="0.5">
<polygon points="20,30 65,15 90,40 40,70" fill="none" />
<polygon points="150,20 180,50 210,30 240,70" fill="none" />
<polygon points="50,200 90,220 130,170 170,190" fill="none" />
<polygon points="210,210 250,240 270,200 290,280" fill="none" />
</g>
<!-- Floating geometric elements -->
<g id="floating-elements">
<polygon points="40,100 50,110 30,115" fill="rgba(255,100,100,0.5)" transform="rotate(10)">
<animate attributeName="transform" from="rotate(10)" to="rotate(370)" dur="30s" repeatCount="indefinite" />
</polygon>
<rect x="230" y="160" width="10" height="10" fill="rgba(100,200,255,0.5)" transform="rotate(45)">
<animate attributeName="transform" from="rotate(45)" to="rotate(405)" dur="25s" repeatCount="indefinite" />
</rect>
<circle cx="270" cy="90" r="5" fill="rgba(200,255,100,0.5)">
<animate attributeName="cy" values="90;85;90" dur="7s" repeatCount="indefinite" />
</circle>
<polygon points="50,190 60,180 70,190 60,200" fill="rgba(255,200,100,0.5)">
<animate attributeName="transform" from="rotate(0)" to="rotate(360)" dur="20s" repeatCount="indefinite" />
</polygon>
</g>
<!-- Planets being juggled -->
<g id="juggling-planets">
<!-- Planet 1 (Mars-like) -->
<g transform="translate(80, 80) rotate(10)">
<circle cx="0" cy="0" r="15" fill="url(#planet1Gradient)" />
<circle cx="0" cy="0" r="15" fill="url(#planetPattern1)" fill-opacity="0.3" />
<path d="M-7,-7 L7,7 M-7,7 L7,-7" stroke="rgba(255,255,255,0.5)" stroke-width="0.5" />
<circle cx="5" cy="-5" r="3" fill="rgba(255,100,100,0.7)" />
<circle cx="-6" cy="6" r="2" fill="rgba(255,100,100,0.7)" />
</g>
<!-- Planet 2 (Saturn-like) -->
<g transform="translate(150, 50) rotate(-15)">
<circle cx="0" cy="0" r="20" fill="url(#planet2Gradient)" />
<circle cx="0" cy="0" r="20" fill="url(#planetPattern2)" fill-opacity="0.2" />
<ellipse cx="0" cy="0" rx="28" ry="6" fill="none" stroke="url(#ringGradient)" stroke-width="3" />
<circle cx="5" cy="-8" r="4" fill="rgba(255,255,255,0.3)" />
<circle cx="-10" cy="3" r="3" fill="rgba(255,255,255,0.2)" />
</g>
<!-- Planet 3 (Earth-like) -->
<g transform="translate(220, 90) rotate(20)">
<circle cx="0" cy="0" r="18" fill="url(#planet3Gradient)" />
<!-- Continents -->
<path d="M-10,-5 C-5,-10 5,-8 10,-5 C8,0 12,5 8,8 C0,10 -8,5 -10,0 Z" fill="rgba(255,255,100,0.3)" />
<path d="M0,-12 C5,-10 8,-5 6,0 C2,2 -2,2 -6,0 C-8,-5 -5,-10 0,-12 Z" fill="rgba(255,255,100,0.3)" />
<path d="M-3,5 C0,3 3,3 6,5 C8,8 4,12 0,10 C-4,12 -8,8 -6,5 C-5,4 -4,5 -3,5 Z" fill="rgba(255,255,100,0.3)" />
<!-- Geometric grid lines -->
<path d="M-18,0 L18,0 M0,-18 L0,18" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" />
<circle cx="0" cy="0" r="12" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="0.5" />
</g>
<!-- Planet 4 (Fantasy/Geometric) -->
<g transform="translate(120, 20) rotate(-10)">
<circle cx="0" cy="0" r="12" fill="url(#planet4Gradient)" />
<!-- Geometric surface patterns -->
<path d="M-6,-6 L6,6 M-6,6 L6,-6 M-8,0 L8,0 M0,-8 L0,8" stroke="rgba(255,255,255,0.4)" stroke-width="0.5" />
<circle cx="0" cy="0" r="6" fill="none" stroke="rgba(255,150,50,0.5)" stroke-width="1" />
<polygon points="0,-12 4,-4 12,0 4,4 0,12 -4,4 -12,0 -4,-4" fill="none" stroke="rgba(255,200,50,0.6)" stroke-width="0.5" />
</g>
</g>
<!-- Astronaut Squirrel -->
<g id="astronaut-squirrel" transform="translate(150, 180)">
<!-- Space helmet -->
<circle cx="0" cy="0" r="30" fill="white" stroke="#cfd9df" stroke-width="2" />
<!-- Helmet visor -->
<path d="M-20,-10 A30,30 0 0,1 20,-10 L20,15 A30,30 0 0,1 -20,15 Z" fill="url(#visorGradient)" />
<!-- Reflections on visor -->
<path d="M-18,-8 C-10,-15 10,-15 18,-8" stroke="rgba(255,255,255,0.7)" stroke-width="1" fill="none" />
<path d="M-15,-5 L-10,-5" stroke="rgba(255,255,255,0.7)" stroke-width="1" />
<path d="M10,-5 L15,-5" stroke="rgba(255,255,255,0.7)" stroke-width="1" />
<!-- Squirrel face (visible through visor) -->
<g id="squirrel-face" transform="translate(0, 0)">
<!-- Geometric squirrel face -->
<polygon points="-8,-10 8,-10 12,-2 0,5 -12,-2" fill="#b37f52" />
<!-- Eyes -->
<circle cx="-8" cy="-3" r="3" fill="black" />
<circle cx="8" cy="-3" r="3" fill="black" />
<circle cx="-8" cy="-4" r="1" fill="white" />
<circle cx="8" cy="-4" r="1" fill="white" />
<!-- Nose -->
<polygon points="-3,2 3,2 0,5" fill="#8c5b3e" />
<!-- Whiskers -->
<line x1="0" y1="3" x2="-14" y2="0" stroke="#8c5b3e" stroke-width="0.5" />
<line x1="0" y1="3" x2="-12" y2="3" stroke="#8c5b3e" stroke-width="0.5" />
<line x1="0" y1="3" x2="-13" y2="6" stroke="#8c5b3e" stroke-width="0.5" />
<line x1="0" y1="3" x2="14" y2="0" stroke="#8c5b3e" stroke-width="0.5" />
<line x1="0" y1="3" x2="12" y2="3" stroke="#8c5b3e" stroke-width="0.5" />
<line x1="0" y1="3" x2="13" y2="6" stroke="#8c5b3e" stroke-width="0.5" />
</g>
<!-- Helmet connection to suit -->
<path d="M-20,15 C-25,20 -25,25 -20,30 L20,30 C25,25 25,20 20,15" fill="#cfd9df" stroke="#b0b8bf" stroke-width="1" />
<!-- Spacesuit body -->
<path d="M-30,30 L-25,60 L25,60 L30,30" fill="url(#spacesuitGradient)" stroke="#cfd9df" stroke-width="2" />
<!-- Arms juggling -->
<path d="M-30,35 C-50,15 -70,45 -50,65" fill="none" stroke="url(#spacesuitGradient)" stroke-width="8" stroke-linecap="round" />
<path d="M30,35 C50,5 80,25 60,65" fill="none" stroke="url(#spacesuitGradient)" stroke-width="8" stroke-linecap="round" />
<!-- Geometric squirrel tail -->
<path d="M0,60 C-20,80 -30,100 -40,80 C-50,60 -20,50 -10,70 Z" fill="#b37f52" stroke="#8c5b3e" stroke-width="1" />
<path d="M-20,70 L-30,75 L-25,65" fill="#b37f52" stroke="#8c5b3e" stroke-width="1" />
<!-- Spacesuit details -->
<rect x="-15" y="35" width="30" height="10" rx="2" ry="2" fill="#888" stroke="#666" stroke-width="1" />
<circle cx="0" cy="40" r="3" fill="#ff4d4d" />
<rect x="-10" y="50" width="20" height="5" rx="1" ry="1" fill="#888" stroke="#666" stroke-width="1" />
<!-- Space agency emblem -->
<g transform="translate(-15, 40) scale(0.5)">
<polygon points="0,-10 7,-5 5,9 -5,9 -7,-5" fill="url(#shieldGradient)" stroke="#fff" stroke-width="1" />
<!-- Stylized acorn/nut symbol -->
<path d="M0,-5 L3,0 L0,5 L-3,0 Z" fill="white" />
<path d="M-3,0 L-7,4 M3,0 L7,4" stroke="white" stroke-width="1" />
</g>
<!-- Oxygen tank -->
<rect x="8" y="35" width="10" height="15" rx="2" ry="2" fill="#b0b8bf" stroke="#888" stroke-width="1" />
<circle cx="13" cy="38" r="2" fill="#666" />
</g>
<!-- Motion lines for juggling -->
<g id="motion-lines" stroke-dasharray="3,3" fill="none" stroke="rgba(255,255,255,0.7)" stroke-width="1">
<path d="M80,80 C100,40 120,10 150,50" />
<path d="M150,50 C180,20 200,50 220,90" />
<path d="M220,90 C200,120 150,120 120,20" />
<path d="M120,20 C100,50 70,70 80,80" />
</g>
<!-- Geometric decorative elements -->
<g id="geo-decorations">
<polygon points="20,250 40,280 10,290" fill="rgba(255,255,255,0.2)" />
<polygon points="270,230 290,250 260,260" fill="rgba(255,255,255,0.2)" />
<polygon points="30,150 20,180 50,170" fill="rgba(255,255,255,0.1)" />
<polygon points="260,160 250,190 280,180" fill="rgba(255,255,255,0.1)" />
<path d="M240,120 L260,115 L255,135 Z" fill="rgba(255,255,255,0.2)" />
<path d="M40,120 L60,115 L55,135 Z" fill="rgba(255,255,255,0.2)" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with cosmic gradient -->
<defs>
<radialGradient id="skyGradient" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" style="stop-color:#0B0B2A;stop-opacity:1" />
<stop offset="0.4" style="stop-color:#1A1A4F;stop-opacity:1" />
<stop offset="0.8" style="stop-color:#2D2D4F;stop-opacity:1" />
<stop offset="1" style="stop-color:#454545;stop-opacity:1" />
</radialGradient>
<linearGradient id="treeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
</linearGradient>
<pattern id="planetPattern" x="0" y="0" width="100%" height="100%" patternUnits="userSpaceOnUse">
<circle cx="50" cy="50" r="10" fill="#444" />
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Ground -->
<line x1="0" y1="280" x2="300" y2="280" stroke="#2D1810" stroke-width="4" />
<!-- Tree -->
<g transform="translate(150,200)">
<rect x="-50" y="-150" width="100" height="150" fill="#4A2D0E" />
<circle cx="0" cy="-100" r="50" fill="url(#treeGradient)" />
</g>
<!-- Astronaut Squirrel -->
<g transform="translate(150,180)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="20" ry="30" fill="#8B4513" />
<!-- Legs -->
<line x1="-10" y1="30" x2="10" y2="30" stroke="#8B4513" stroke-width="4" />
<!-- Head -->
<ellipse cx="0" cy="-20" rx="15" ry="10" fill="#8B4513" />
<!-- Ears -->
<polygon points="-20,-30 0,-25 -10,-30" fill="#8B4513" />
<polygon points="20,-30 0,-25 10,-30" fill="#8B4513" />
<!-- Tail -->
<path d="M 0,0 Q 20,-20 40,0" fill="#8B4513" />
<!-- Helmet -->
<circle cx="0" cy="-20" r="15" fill="#B1B1B1" />
<circle cx="0" cy="-20" r="10" fill="#FFFFFF" />
<path d="M -10,-25 Q 0,-20 10,-25" fill="#B1B1B1" />
<!-- Eyes -->
<circle cx="-5" cy="-15" r="2" fill="#000000" />
<circle cx="5" cy="-15" r="2" fill="#000000" />
<!-- Nose -->
<polygon points="0,-10 3,-12 -3,-12" fill="#8B4513" />
</g>
<!-- Planets -->
<g transform="translate(150,150)">
<!-- Planet 1 -->
<g transform="rotate(30)">
<circle r="20" fill="url(#planetPattern)" />
<ellipse cx="0" cy="0" rx="25" ry="15" fill="url(#skyGradient)" />
</g>
<!-- Planet 2 -->
<g transform="rotate(120)">
<circle r="20" fill="url(#planetPattern)" />
<ellipse cx="0" cy="0" rx="25" ry="15" fill="url(#skyGradient)" />
</g>
<!-- Planet 3 -->
<g transform="rotate(210)">
<circle r="20" fill="url(#planetPattern)" />
<ellipse cx="0" cy="0" rx="25" ry="15" fill="url(#skyGradient)" />
</g>
</g>
<!-- Stars -->
<g>
<circle cx="50" cy="50" r="1" fill="white" stroke="white" stroke-width="0.5" />
<circle cx="200" cy="100" r="1" fill="white" stroke="white" stroke-width="0.5" />
<circle cx="80" cy="200" r="1" fill="white" stroke="white" stroke-width="0.5" />
<circle cx="220" cy="250" r="1" fill="white" stroke="white" stroke-width="0.5" />
<circle cx="150" cy="280" r="1" fill="white" stroke="white" stroke-width="0.5" />
</g>
</svg>
Judge's Analysis
Player 1's image captures the prompt more effectively with an astronaut squirrel juggling multiple planets, displayed in a geometric style.
The composition is vibrant and dynamic, using geometric shapes to enhance the theme.
Player 2's image lacks clarity in representing the prompt and doesn't showcase the juggling aspect as clearly or creatively.
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
"Dandelion made of clock gears, in a minimalist steampunk style"
"A geometric zebra made entirely of triangles drinking neon water from a pixelated oasis"
"A clock with melting numbers in a surreal desert landscape"
"A giraffe wearing a spacesuit, floating among colorful planets"
"A flamingo in a top hat playing the violin under a moonlit sky"
"Floating island with skyscrapers, underlit by bioluminescent jellyfish in the sky"