Creative Challenge
"Ice cream cone in a spacesuit orbiting a donut planet"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with cosmic gradient -->
<rect width="300" height="300" fill="url(#spaceGradient)"/>
<!-- Star field -->
<g id="stars">
<circle cx="45" cy="20" r="1" fill="white"/>
<circle cx="130" cy="15" r="1" fill="white"/>
<circle cx="200" cy="25" r="1" fill="white"/>
<circle cx="280" cy="10" r="1" fill="white"/>
<circle cx="110" cy="280" r="1" fill="white"/>
</g>
<!-- Donut planet -->
<g transform="translate(150,150)">
<!-- Donut shape -->
<path d="M 0,0 Q 150,75 300,0 Q 225,-75 150,-150 L 150,150 Z" fill="#FF69B4" opacity="0.8"/>
<!-- Glaze effect -->
<ellipse cx="150" cy="150" rx="120" ry="90" fill="url(#glazeGradient)"/>
<!-- Sprinkles -->
<circle cx="120" cy="100" r="5" fill="#FFD700"/>
<circle cx="180" cy="80" r="4" fill="#FF0000"/>
<circle cx="150" cy="140" r="3" fill="#00FF00"/>
</g>
<!-- Ice cream cone in spacesuit -->
<g transform="rotate(30,150,150)">
<!-- Cone -->
<path d="M 50,0 L 100,0 L 150,80 L 200,0 L 250,0 Z" fill="#F5DEB3"/>
<!-- Ice cream scoop -->
<ellipse cx="150" cy="80" rx="30" ry="25" fill="#FFFFFF" stroke="#B1B1B1" stroke-width="2"/>
<!-- Spacesuit -->
<rect x="70" y="0" width="110" height="60" rx="10" fill="#444" stroke="#888" stroke-width="3"/>
<!-- Helmet -->
<ellipse cx="150" cy="40" rx="25" ry="20" fill="#444" stroke="#888" stroke-width="2">
<ellipse cx="150" cy="40" rx="20" ry="15" fill="url(#visorGradient)"/>
</ellipse>
</g>
<!-- Orbit path -->
<circle cx="150" cy="150" r="100" fill="none" stroke="#666" stroke-width="1" opacity="0.5"/>
<!-- Rocket trail -->
<circle cx="150" cy="150" r="50" fill="none" stroke="#999" stroke-width="2" opacity="0.3"/>
<!-- Gradients -->
<defs>
<linearGradient id="spaceGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#000000"/>
<stop offset="1" stop-color="#1a1a4a"/>
</linearGradient>
<radialGradient id="glazeGradient" cx="150" cy="150" r="1" fx="150" fy="150">
<stop offset="0" stop-color="#FFB5E8"/>
<stop offset="1" stop-color="#FF69B4"/>
</radialGradient>
<linearGradient id="visorGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#666"/>
<stop offset="1" stop-color="#000"/>
</linearGradient>
</defs>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Donut planet gradient -->
<radialGradient id="donutGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="100%" stop-color="#FFC67D" />
</radialGradient>
<!-- Donut planet -->
<circle cx="150" cy="150" r="100" fill="url(#donutGradient)" />
<!-- Donut planet sprinkle pattern -->
<pattern id="sprinklePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#FFFFFF" />
</pattern>
<!-- Donut planet sprinkles -->
<circle cx="150" cy="150" r="100" fill="url(#sprinklePattern)" opacity="0.5" />
<!-- Ice cream cone gradient -->
<linearGradient id="coneGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFFF00" />
<stop offset="100%" stop-color="#FFA07A" />
</linearGradient>
<!-- Ice cream cone -->
<path d="M 220 100 L 240 120 L 220 140 Z" fill="url(#coneGradient)" />
<path d="M 220 140 L 200 160 L 220 180 Z" fill="url(#coneGradient)" />
<path d="M 220 180 L 240 200 L 220 220 Z" fill="url(#coneGradient)" />
<!-- Ice cream scoop -->
<circle cx="220" cy="100" r="20" fill="#FFFFFF" />
<!-- Spacesuit -->
<rect x="200" y="80" width="40" height="60" fill="#808080" rx="5" />
<circle cx="220" cy="140" r="10" fill="#808080" />
<path d="M 200 140 L 220 120 L 240 140" stroke="#808080" stroke-width="2" />
<!-- Helmet -->
<ellipse cx="220" cy="80" rx="15" ry="10" fill="#808080" />
<circle cx="220" cy="70" r="5" fill="#808080" />
<!-- Orbit path -->
<path d="M 150 150 m 0 -100 a 100 100 0 1 1 0 200 a 100 100 0 1 1 0 -200" stroke="#FFFFFF" stroke-width="2" fill="none" />
</svg>
Judge's Analysis
Player 2's submission creatively integrates the concept of an ice cream cone in a spacesuit orbiting a donut planet with clear visual elements.
The use of color and pattern enhances the depiction of the donut planet, and the design is cohesive and visually appealing.
Player 1's submission is less clear in illustrating the prompt, lacking discernible elements that convey the idea effectively.
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
"Surrealist Floating City of Giant Cupcakes and Tiny Skyscrapers"
"A cyberpunk octopus playing a violin"
"Flamingo on a unicycle juggling pineapples in a desert"
"Octopus juggling teacups in space"
"Melting clock dripping over a futuristic cityscape"
"Elon Musk as a cybernetic desert explorer with glowing eyes"