Creative Challenge
"An octopus holding a cupcake on each tentacle under a disco ball."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="discoGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#ff00ff"/>
<stop offset="100%" stop-color="#300030"/>
</radialGradient>
<linearGradient id="tentacleGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff6b6b"/>
<stop offset="100%" stop-color="#ff0066"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#discoGradient)"/>
<!-- Disco Ball -->
<g transform="translate(150 60)">
<circle r="25" fill="#fff" filter="url(#glow)"/>
<g transform="rotate(-30)">
<rect x="-2" y="-40" width="4" height="8" fill="#d4d4d4" transform="rotate(45)"/>
<rect x="15" y="-30" width="4" height="6" fill="#b0b0b0" transform="rotate(20)"/>
<rect x="-18" y="-25" width="4" height="7" fill="#c0c0c0" transform="rotate(-15)"/>
</g>
</g>
<!-- Octopus -->
<g transform="translate(150 200)">
<circle r="40" fill="#4a148c"/>
<!-- Tentacles -->
<g stroke="url(#tentacleGrad)" stroke-width="15" fill="none" stroke-linecap="round">
<path d="M-60,40 Q-80 80 -100 120 L-110 160" transform="rotate(-20)"/>
<path d="M-30,40 Q-20 80 -10 120 L0 160" transform="rotate(-10)"/>
<path d="M0,40 Q10 80 20 120 L30 160"/>
<path d="M30,40 Q40 80 50 120 L60 160" transform="rotate(10)"/>
</g>
<!-- Cupcakes -->
<g transform="translate(-110 160)">
<rect x="0" y="0" width="20" height="30" fill="#f9a825" rx="5"/>
<path d="M0 0 Q10 -20 20 0" fill="#ff4081"/>
<circle cx="10" cy="-5" r="2" fill="#fff"/>
</g>
<g transform="translate(30 160)">
<rect x="0" y="0" width="20" height="30" fill="#7b1fa2" rx="5"/>
<path d="M0 0 Q10 -25 20 0" fill="#00bcd4"/>
<rect x="5" y="-8" width="3" height="10" transform="rotate(45)" fill="#fff"/>
</g>
</g>
<!-- Disco Lights -->
<g opacity="0.3">
<circle cx="80" cy="100" r="40" fill="url(#discoGradient)"/>
<circle cx="220" cy="150" r="30" fill="url(#discoGradient)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="discoBallGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff" />
<stop offset="100%" stop-color="#a0a0a0" />
</radialGradient>
<pattern id="discoPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#fff" filter="url(#glow)"/>
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="1" result="blur"/>
<feComposite in="blur" operator="over"/>
</filter>
</defs>
<!-- Disco Ball -->
<circle cx="150" cy="50" r="30" fill="url(#discoBallGrad)"/>
<circle cx="150" cy="50" r="30" fill="url(#discoPattern)" opacity="0.5"/>
<line x1="150" y1="0" x2="150" y2="20" stroke="#666" stroke-width="2"/>
<!-- Octopus Body -->
<ellipse cx="150" cy="120" rx="40" ry="35" fill="#ff69b4"/>
<circle cx="140" cy="110" r="8" fill="white"/>
<circle cx="160" cy="110" r="8" fill="white"/>
<circle cx="140" cy="110" r="4" fill="black"/>
<circle cx="160" cy="110" r="4" fill="black"/>
<!-- Tentacles with Cupcakes -->
<g id="tentacles">
<!-- 8 tentacles with cupcakes -->
<path d="M130,120 Q100,160 80,200" fill="none" stroke="#ff69b4" stroke-width="8"/>
<path d="M140,120 Q120,170 110,220" fill="none" stroke="#ff69b4" stroke-width="8"/>
<path d="M150,120 Q150,180 150,240" fill="none" stroke="#ff69b4" stroke-width="8"/>
<path d="M160,120 Q180,170 190,220" fill="none" stroke="#ff69b4" stroke-width="8"/>
<path d="M170,120 Q200,160 220,200" fill="none" stroke="#ff69b4" stroke-width="8"/>
<path d="M125,120 Q80,150 60,180" fill="none" stroke="#ff69b4" stroke-width="8"/>
<path d="M175,120 Q220,150 240,180" fill="none" stroke="#ff69b4" stroke-width="8"/>
<path d="M145,120 Q140,140 130,160" fill="none" stroke="#ff69b4" stroke-width="8"/>
<!-- Cupcakes -->
<g class="cupcake" transform="translate(60,180) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#pink"/>
</g>
<g class="cupcake" transform="translate(110,220) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#yellow"/>
</g>
<g class="cupcake" transform="translate(150,240) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#lightblue"/>
</g>
<g class="cupcake" transform="translate(190,220) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#purple"/>
</g>
<g class="cupcake" transform="translate(220,200) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#green"/>
</g>
<g class="cupcake" transform="translate(80,200) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#orange"/>
</g>
<g class="cupcake" transform="translate(240,180) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#red"/>
</g>
<g class="cupcake" transform="translate(130,160) scale(0.5)">
<path d="M-20,0 Q0,-20 20,0 L10,20 L-10,20 Z" fill="#brown"/>
<path d="M-10,-5 Q0,-25 10,-5 Q0,5 -10,-5 Z" fill="#violet"/>
</g>
</g>
<!-- Light Beams -->
<g opacity="0.2">
<path d="M150,50 L50,300" fill="#yellow"/>
<path d="M150,50 L250,300" fill="#pink"/>
<path d="M150,50 L0,200" fill="#blue"/>
<path d="M150,50 L300,200" fill="#green"/>
</g>
</svg>
Judge's Analysis
Player 2's submission adheres more closely to the prompt by clearly depicting an octopus with eight tentacles under a disco ball, even though it lacks cupcakes.
Player 1's image is more abstract and does not represent an octopus or cupcakes, making it less aligned with the idea.
Overall, Player 2's work is more recognizable and relevant to 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
"An ancient tree with a glowing doorway at its base under a midnight sky."
"An astronaut planting a flag on a giant slice of pizza floating in space."
"Flamingo playing a saxophone under a starry night sky"
"A steam-powered mechanical hummingbird with clockwork wings"