Back

SVG Drawing Match #2545

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Alien on a unicycle juggling flaming donuts under a starry sky."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Starry night sky with gradient -->
  <defs>
    <radialGradient id="nightSky" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#001024" />
      <stop offset="100%" stop-color="#000010" />
    </radialGradient>
    <radialGradient id="flameGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="yellow" />
      <stop offset="50%" stop-color="orange" />
      <stop offset="100%" stop-color="red" />
    </radialGradient>
    <radialGradient id="donutGlaze" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffccff" />
      <stop offset="100%" stop-color="#ff6699" />
    </radialGradient>
    <pattern id="starPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="0.5" fill="white" />
    </pattern>
  </defs>
  
  <!-- Starry background -->
  <rect width="300" height="300" fill="url(#nightSky)" />
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.7" />
  
  <!-- Unicycle -->
  <g id="unicycle">
    <!-- Wheel -->
    <circle cx="150" cy="220" r="30" fill="none" stroke="#888" stroke-width="3" />
    <circle cx="150" cy="220" r="28" fill="none" stroke="#aaa" stroke-dasharray="4,4" stroke-width="2" />
    <!-- Spoke lines -->
    <line x1="150" y1="220" x2="150" y2="190" stroke="#aaa" stroke-width="2"/>
    <line x1="150" y1="220" x2="175" y2="220" stroke="#aaa" stroke-width="2"/>
    <line x1="150" y1="220" x2="135" y2="240" stroke="#aaa" stroke-width="2"/>
    
    <!-- Unicycle frame -->
    <line x1="150" y1="190" x2="150" y2="150" stroke="#ccc" stroke-width="3"/>
    <line x1="150" y1="150" x2="130" y2="140" stroke="#ccc" stroke-width="3"/>
  </g>
  
  <!-- Alien -->
  <g id="alien">
    <!-- Head -->
    <ellipse cx="130" cy="130" rx="20" ry="25" fill="#7FD13B" stroke="#5A9E2F" stroke-width="2"/>
    <!-- Eyes -->
    <ellipse cx="122" cy="125" rx="4" ry="6" fill="white"/>
    <ellipse cx="138" cy="125" rx="4" ry="6" fill="white"/>
    <!-- Pupils -->
    <circle cx="122" cy="125" r="2" fill="black"/>
    <circle cx="138" cy="125" r="2" fill="black"/>
    <!-- Mouth -->
    <path d="M120,140 Q130,150 140,140" stroke="#5A9E2F" stroke-width="2" fill="none"/>
    <!-- Antennae -->
    <line x1="130" y1="105" x2="125" y2="90" stroke="#7FD13B" stroke-width="2"/>
    <circle cx="125" cy="90" r="3" fill="#ffcc00"/>
  </g>
  
  <!-- Flaming Donuts being juggled -->
  <!-- Left Donut -->
  <g id="donut1">
    <ellipse cx="100" cy="100" rx="12" ry="8" fill="url(#donutGlaze)" stroke="#CC3366" stroke-width="1"/>
    <ellipse cx="100" cy="100" rx="5" ry="3" fill="#5C1A27" />
    <path d="M88,100 C90,90 110,90 112,100 C110,110 90,110 88,100" fill="url(#flameGrad)" opacity="0.8"/>
  </g>
  <!-- Right Donut -->
  <g id="donut2">
    <ellipse cx="170" cy="100" rx="12" ry="8" fill="url(#donutGlaze)" stroke="#CC3366" stroke-width="1"/>
    <ellipse cx="170" cy="100" rx="5" ry="3" fill="#5C1A27" />
    <path d="M158,100 C160,90 180,90 182,100 C180,110 160,110 158,100" fill="url(#flameGrad)" opacity="0.8"/>
  </g>
  <!-- Top Donut -->
  <g id="donut3">
    <ellipse cx="135" cy="70" rx="12" ry="8" fill="url(#donutGlaze)" stroke="#CC3366" stroke-width="1"/>
    <ellipse cx="135" cy="70" rx="5" ry="3" fill="#5C1A27" />
    <path d="M123,70 C125,60 145,60 147,70 C145,80 125,80 123,70" fill="url(#flameGrad)" opacity="0.8"/>
  </g>
  
  <!-- Juggling Paths (dotted arcs showing motion) -->
  <path d="M100,100 Q115,85 135,70" stroke="white" stroke-dasharray="3,3" fill="none"/>
  <path d="M170,100 Q155,85 135,70" stroke="white" stroke-dasharray="3,3" fill="none"/>
  <path d="M100,100 Q115,115 135,130" stroke="white" stroke-dasharray="3,3" fill="none"/>
  <path d="M170,100 Q155,115 135,130" stroke="white" stroke-dasharray="3,3" fill="none"/>
  
  <!-- Alien arm reaching out to catch donut (attached to frame) -->
  <path d="M130,155 Q140,140 150,150" stroke="#7FD13B" stroke-width="3" fill="none" stroke-linecap="round"/>
  
  <!-- Unicycle and alien connection -->
  <line x1="130" y1="155" x2="150" y2="150" stroke="#ccc" stroke-width="2" stroke-dasharray="2,2"/>
  
  <!-- Additional stars in the sky -->
  <circle cx="50" cy="50" r="1" fill="white" />
  <circle cx="80" cy="40" r="1" fill="white" />
  <circle cx="230" cy="70" r="1.2" fill="white" />
  <circle cx="270" cy="30" r="1" fill="white" />
  <circle cx="210" cy="20" r="1" fill="white" />
  <circle cx="60" cy="250" r="1" fill="white" />
  <circle cx="250" cy="240" r="1" fill="white" />
</svg>
SVG by o4-mini medium (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#001022"/>
      <stop offset="100%" stop-color="#000"/>
    </linearGradient>
    <radialGradient id="flameGradient" cx="50%" cy="0%" r="80%" fx="50%" fy="0%">
      <stop offset="0%" stop-color="#fff06b"/>
      <stop offset="50%" stop-color="#ff4500"/>
      <stop offset="100%" stop-color="#a00000"/>
    </radialGradient>
    <radialGradient id="donutGradient" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#ffd27f"/>
      <stop offset="100%" stop-color="#d4881b"/>
    </radialGradient>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <!-- Stars -->
  <circle cx="20" cy="30" r="1.5" fill="#fff" opacity="0.8"/>
  <circle cx="50" cy="60" r="2" fill="#fff" opacity="0.7"/>
  <circle cx="80" cy="20" r="1" fill="#fff" opacity="0.9"/>
  <circle cx="120" cy="50" r="1.8" fill="#fff" opacity="0.8"/>
  <circle cx="160" cy="40" r="1.2" fill="#fff" opacity="0.8"/>
  <circle cx="200" cy="80" r="1.4" fill="#fff" opacity="0.7"/>
  <circle cx="250" cy="30" r="1.6" fill="#fff" opacity="0.8"/>
  <circle cx="270" cy="60" r="1.3" fill="#fff" opacity="0.7"/>
  <circle cx="30" cy="100" r="1.7" fill="#fff" opacity="0.8"/>
  <circle cx="70" cy="130" r="1.5" fill="#fff" opacity="0.8"/>
  <circle cx="110" cy="90" r="1.2" fill="#fff" opacity="0.9"/>
  <circle cx="140" cy="120" r="1.3" fill="#fff" opacity="0.8"/>
  <circle cx="180" cy="160" r="1.4" fill="#fff" opacity="0.7"/>
  <circle cx="220" cy="140" r="1.6" fill="#fff" opacity="0.8"/>
  <circle cx="260" cy="110" r="1.1" fill="#fff" opacity="0.7"/>
  <circle cx="100" cy="30" r="1.5" fill="#fff" opacity="0.8"/>
  <circle cx="190" cy="20" r="1.2" fill="#fff" opacity="0.9"/>
  <circle cx="210" cy="70" r="1.3" fill="#fff" opacity="0.8"/>
  <circle cx="240" cy="100" r="1.4" fill="#fff" opacity="0.7"/>
  <circle cx="280" cy="150" r="1.6" fill="#fff" opacity="0.8"/>
  <circle cx="40" cy="180" r="1.5" fill="#fff" opacity="0.8"/>
  <circle cx="90" cy="170" r="1.2" fill="#fff" opacity="0.9"/>
  <circle cx="150" cy="140" r="1.3" fill="#fff" opacity="0.8"/>
  <circle cx="170" cy="100" r="1.4" fill="#fff" opacity="0.7"/>
  <!-- Ground Shade -->
  <ellipse cx="150" cy="310" rx="200" ry="80" fill="#040404"/>
  <!-- Unicycle -->
  <g id="unicycle">
    <circle cx="150" cy="260" r="40" stroke="#666" stroke-width="4" fill="none"/>
    <line x1="150" y1="260" x2="150" y2="200" stroke="#666" stroke-width="4"/>
    <line x1="150" y1="200" x2="150" y2="180" stroke="#333" stroke-width="3"/>
    <rect x="140" y="165" width="20" height="8" fill="#333"/>
  </g>
  <!-- Alien -->
  <g id="alien">
    <!-- Body -->
    <ellipse cx="150" cy="175" rx="12" ry="20" fill="#8f8" stroke="#6b6" stroke-width="2"/>
    <!-- Head -->
    <ellipse cx="150" cy="150" rx="15" ry="18" fill="#8f8" stroke="#6b6" stroke-width="2"/>
    <!-- Eyes -->
    <ellipse cx="144" cy="147" rx="4" ry="6" fill="#000"/>
    <ellipse cx="156" cy="147" rx="4" ry="6" fill="#000"/>
    <circle cx="144" cy="145" r="1.5" fill="#fff"/>
    <circle cx="156" cy="145" r="1.5" fill="#fff"/>
    <!-- Mouth -->
    <path d="M142,157 Q150,165 158,157" stroke="#000" stroke-width="2" fill="none"/>
    <!-- Arms -->
    <path d="M150,165 Q120,140 110,120" stroke="#8f8" stroke-width="5" fill="none" stroke-linecap="round"/>
    <path d="M150,165 Q180,140 190,120" stroke="#8f8" stroke-width="5" fill="none" stroke-linecap="round"/>
    <!-- Flaming Donuts -->
    <g>
      <path fill="url(#flameGradient)" d="M110,130 C105,140 115,145 120,135 C125,145 135,140 130,130 C125,138 115,138 110,130Z"/>
      <circle cx="120" cy="120" r="12" fill="url(#donutGradient)" stroke="#c63" stroke-width="2"/>
      <circle cx="120" cy="120" r="5" fill="#3f2418"/>
    </g>
    <g>
      <path fill="url(#flameGradient)" d="M140,110 C135,120 145,125 150,115 C155,125 165,120 160,110 C155,118 145,118 140,110Z"/>
      <circle cx="150" cy="100" r="12" fill="url(#donutGradient)" stroke="#c63" stroke-width="2"/>
      <circle cx="150" cy="100" r="5" fill="#3f2418"/>
    </g>
    <g>
      <path fill="url(#flameGradient)" d="M170,130 C165,140 175,145 180,135 C185,145 195,140 190,130 C185,138 175,138 170,130Z"/>
      <circle cx="180" cy="120" r="12" fill="url(#donutGradient)" stroke="#c63" stroke-width="2"/>
      <circle cx="180" cy="120" r="5" fill="#3f2418"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 2

Judge's Analysis

    Player 2's image captures the prompt more effectively with a clearer depiction of the alien juggling flaming donuts under a starry sky.

    The donuts are more detailed, and the overall composition feels polished and visually appealing.

    Player 1's image, while creative, is less refined and the juggling aspect is less dynamic.

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

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
40
Player 2
48
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
2
Player 2
2
Circles

The number of circle elements (circle) in the SVG.

Player 1
13
Player 2
33
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
9
Player 2
5
Lines

The number of line elements (line) in the SVG.

Player 1
7
Player 2
2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
9
Player 2
6
Groups

The number of group elements (g) in the SVG.

Player 1
5
Player 2
5

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
3
Player 2
3
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
4
Player 2
24
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
19
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
15

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
21
Player 2
21
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
4
Player 2
3
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

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