Creative Challenge
"Alien ballerina gliding on a rainbow ringed Saturn"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="300" height="300" fill="#000000"/>
<!-- Saturn -->
<g transform="translate(150,150)">
<!-- Planet body -->
<circle r="60" transform="rotate(30)" fill="url(#saturnGrad)"/>
<!-- Rings -->
<circle r="120" fill="none" stroke="url(#rainbowGrad)" stroke-width="8"/>
<circle r="100" fill="none" stroke="#ffffff" stroke-width="2" opacity="0.3"/>
</g>
<!-- Alien Ballerina -->
<g transform="translate(150,150)">
<!-- Body -->
<path d="M 0 0 Q 20,-40 40,0 Q 60,-40 80,0 Q 100,-40 120,0 Q 140,-40 160,0"
fill="#aabbff" opacity="0.8"/>
<!-- Head -->
<circle cx="80" cy="-60" r="15" fill="#ccffff" stroke="#0099ff" stroke-width="2"/>
<!-- Arms/Legs -->
<path d="M 80,-60 Q 90,-80 100,-60 L 120,-40" stroke="#00ffff" stroke-width="3" fill="none"/>
<path d="M 80,-60 Q 70,-80 60,-60 L 40,-40" stroke="#00ffff" stroke-width="3" fill="none"/>
</g>
<!-- Ballet Skirt -->
<g transform="translate(150,150) rotate(45)">
<path d="M 0,0 Q 20,-20 40,0 Q 60,-20 80,0 Q 100,-20 120,0"
fill="url(#skirtGrad)" opacity="0.7"/>
</g>
<!-- Glow Effect -->
<filter id="glow">
<feGaussianBlur stdDeviation="4"/>
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Gradient Definitions -->
<defs>
<linearGradient id="saturnGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#4b0082"/>
<stop offset="1" stop-color="#8a2be2"/>
</linearGradient>
<linearGradient id="rainbowGrad" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#ff0000"/>
<stop offset="0.2" stop-color="#ff9900"/>
<stop offset="0.4" stop-color="#ffff00"/>
<stop offset="0.6" stop-color="#33ff00"/>
<stop offset="0.8" stop-color="#0099ff"/>
<stop offset="1" stop-color="#4b0082"/>
</linearGradient>
<linearGradient id="skirtGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#ff99cc"/>
<stop offset="1" stop-color="#cc99ff"/>
</linearGradient>
</defs>
<!-- Starry Background -->
<g transform="translate(0,0)" opacity="0.3">
<path d="M 30,10 L 25,0 L 20,10 L 15,0 L 10,10 L 5,0 L 0,10" fill="none" stroke="white" stroke-width="1"/>
<path d="M 120,20 L 110,10 L 100,20 L 90,10 L 80,20 L 70,10 L 60,20" fill="none" stroke="white" stroke-width="1"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="saturn-glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#F2B705" />
<stop offset="100%" stop-color="#E75A01" />
</radialGradient>
<linearGradient id="rainbow-ring" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="red" />
<stop offset="14%" stop-color="orange" />
<stop offset="28%" stop-color="yellow" />
<stop offset="42%" stop-color="green" />
<stop offset="56%" stop-color="blue" />
<stop offset="70%" stop-color="indigo" />
<stop offset="84%" stop-color="violet" />
<stop offset="100%" stop-color="red" />
</linearGradient>
<pattern id="alien-skin" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#4AE87E" />
</pattern>
</defs>
<ellipse cx="150" cy="200" rx="50" ry="30" fill="url(#saturn-glow)" />
<ellipse cx="150" cy="200" rx="80" ry="5" fill="url(#rainbow-ring)" transform="rotate(15, 150, 200)" />
<ellipse cx="150" cy="200" rx="95" ry="7" fill="url(#rainbow-ring)" transform="rotate(45, 150, 200)" opacity="0.8" />
<ellipse cx="150" cy="200" rx="70" ry="4" fill="url(#rainbow-ring)" transform="rotate(-20, 150, 200)" opacity="0.6" />
<path d="M110 70 C 130 10, 170 10, 190 70 L 170 120 C 150 100, 130 100, 110 120 Z" fill="url(#alien-skin)" />
<path d="M115 90 C 125 60, 175 60, 185 90" stroke="#FFD700" stroke-width="3" fill="none"/>
<ellipse cx="115" cy="120" rx="5" ry="8" fill="#4AE87E"/>
<ellipse cx="185" cy="120" rx="5" ry="8" fill="#4AE87E"/>
<path d="M100 50 C 100 10, 200 10, 200 50 L 175 30 C 175 10, 125 10, 125 30 z" stroke="violet" stroke-width="2" fill="#800080" />
</svg>
Judge's Analysis
Player 1's image effectively captures the concept of an alien ballerina on a rainbow-ringed Saturn with a clear depiction of a circular rainbow ring and an abstract figure resembling a ballerina.
The composition is cohesive, and the use of color is vibrant and visually appealing, adhering closely to the prompt.
In contrast, Player 2's image is more abstract and less representative of the specific theme, lacking clear elements that define the ballerina or the planet Saturn.
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
"Rainbow-colored octopus painting the ocean with its tentacles"
"Wombats in top hats playing miniature violins under a glowing full moon"
"A cyberpunk octopus playing a violin"
"Octopus in a tuxedo juggling teacups over a coral ballet stage"
"Chameleon juggling colorful planets in space"
"An octopus wearing a monocle, juggling four teacups in a whirlpool"