Back

SVG Drawing Match #2241

May 08, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A robot juggling planets in outer space."

SVG by o4-mini medium (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="80%">
      <stop offset="0%" stop-color="#1a002a"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <radialGradient id="planetGrad1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc33"/>
      <stop offset="100%" stop-color="#e65100"/>
    </radialGradient>
    <radialGradient id="planetGrad2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66ffcc"/>
      <stop offset="100%" stop-color="#006644"/>
    </radialGradient>
    <radialGradient id="planetGrad3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff99cc"/>
      <stop offset="100%" stop-color="#cc0044"/>
    </radialGradient>
    <linearGradient id="robotBodyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#dddddd"/>
      <stop offset="100%" stop-color="#888888"/>
    </linearGradient>
    <filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGrad)"/>

  <!-- Stars -->
  <g fill="#fff" filter="url(#starGlow)" opacity="0.8">
    <circle cx="20" cy="30" r="1.2"/>
    <circle cx="280" cy="15" r="1"/>
    <circle cx="150" cy="70" r="1.5"/>
    <circle cx="50" cy="200" r="1.1"/>
    <circle cx="230" cy="180" r="1.3"/>
    <circle cx="100" cy="120" r="0.9"/>
    <circle cx="270" cy="250" r="1.4"/>
    <circle cx="30" cy="250" r="1"/>
    <circle cx="200" cy="90" r="1"/>
  </g>

  <!-- Planet Trajectories -->
  <path d="M150,220 A100,100 0 0,1 60,80" fill="none" stroke="#bbb" stroke-width="1" stroke-dasharray="3,3"/>
  <path d="M150,220 A120,120 0 0,0 240,60" fill="none" stroke="#bbb" stroke-width="1" stroke-dasharray="3,3"/>
  <path d="M150,220 A80,80 0 0,1 150,200" fill="none" stroke="#bbb" stroke-width="1" stroke-dasharray="3,3"/>
  
  <!-- Planets -->
  <g>
    <circle cx="60"  cy="80"  r="20" fill="url(#planetGrad1)"/>
    <ellipse cx="60" cy="80" rx="28" ry="6" fill="rgba(200,120,0,0.3)" transform="rotate(20 60 80)"/>
    <circle cx="240" cy="60"  r="15" fill="url(#planetGrad2)"/>
    <ellipse cx="240" cy="60" rx="22" ry="5" fill="rgba(0,100,50,0.3)" transform="rotate(-30 240 60)"/>
    <circle cx="150" cy="200" r="18" fill="url(#planetGrad3)"/>
    <ellipse cx="150" cy="200" rx="25" ry="7" fill="rgba(150,20,60,0.3)" transform="rotate(45 150 200)"/>
  </g>

  <!-- Robot -->
  <g transform="translate(150,230)">
    <!-- Body -->
    <rect x="-20" y="-40" width="40" height="50" rx="5" ry="5" fill="url(#robotBodyGrad)" stroke="#777" stroke-width="1"/>
    <!-- Head -->
    <rect x="-15" y="-60" width="30" height="25" rx="4" ry="4" fill="#ccc" stroke="#999" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="-7" cy="-50" r="3" fill="#fff"/>
    <circle cx="-7" cy="-50" r="1.2" fill="#000"/>
    <circle cx="7" cy="-50" r="3" fill="#fff"/>
    <circle cx="7" cy="-50" r="1.2" fill="#000"/>
    <!-- Mouth -->
    <line x1="-6" y1="-40" x2="6" y2="-40" stroke="#555" stroke-width="1.2" stroke-linecap="round"/>
    <!-- Antennae -->
    <line x1="0" y1="-60" x2="0" y2="-75" stroke="#bbb" stroke-width="2"/>
    <circle cx="0" cy="-78" r="3" fill="#ff6666"/>
    <!-- Arms -->
    <path d="M -20,-20 C -60,-40 -80,-60 -60,-80" fill="none" stroke="#aaa" stroke-width="4" stroke-linecap="round"/>
    <path d="M  20,-20 C  60,-40  80,-60  60,-80" fill="none" stroke="#aaa" stroke-width="4" stroke-linecap="round"/>
    <!-- Hands -->
    <circle cx="-60" cy="-80" r="6" fill="#ddd" stroke="#999" stroke-width="1"/>
    <circle cx="60"  cy="-80" r="6" fill="#ddd" stroke="#999" stroke-width="1"/>
    <!-- Body Detail -->
    <circle cx="0" cy="-15" r="5" fill="#bbb"/>
    <circle cx="0" cy="-5"  r="3" fill="#aaa"/>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Outer space background -->
  <rect x="0" y="0" width="300" height="300" fill="#000033" />
  
  <!-- Planets -->
  <circle cx="50" cy="70" r="20" fill="#ffcc00" />
  <circle cx="120" cy="140" r="30" fill="#ff6600" />
  <circle cx="200" cy="50" r="25" fill="#9933ff" />
  
  <!-- Robot body -->
  <rect x="130" y="190" width="40" height="50" fill="#999999" />
  <rect x="120" y="170" width="60" height="20" fill="#666666" />
  
  <!-- Robot head -->
  <circle cx="150" cy="160" r="20" fill="#cccccc" />
  
  <!-- Eyes -->
  <circle cx="143" cy="155" r="5" fill="#ffcc00" />
  <circle cx="157" cy="155" r="5" fill="#ffcc00" />
  
  <!-- Mouth -->
  <ellipse cx="150" cy="168" rx="8" ry="3" fill="none" stroke="#333333" stroke-width="2" />
  
  <!-- Arms -->
  <rect x="85" y="200" width="10" height="40" fill="#666666" />
  <rect x="205" y="200" width="10" height="40" fill="#666666" />
  
  <!-- Juggling motion lines -->
  <path d="M50,70 Q90,40 120,70" stroke="#ffffff" stroke-width="2" fill="none" />
  <path d="M120,140 Q160,110 200,140" stroke="#ffffff" stroke-width="2" fill="none" />
  <path d="M200,50 Q170,90 120,70" stroke="#ffffff" stroke-width="2" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission demonstrates stronger creativity and adherence to the prompt with a clearly identifiable robot and planets in outer space.

    The technical quality is higher, featuring smooth lines, a cohesive design, and a visually appealing background with stars.

    Player 2's image is more abstract and lacks the clarity needed to fully convey the concept of a robot juggling planets in space.

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
34
Player 2
15
Rectangles

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

Player 1
3
Player 2
5
Circles

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

Player 1
21
Player 2
6
Ellipses

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

Player 1
3
Player 2
1
Lines

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

Player 1
2
Player 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
5
Player 2
3
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

Player 1
5
Player 2
Patterns

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

Player 1
Player 2
Filters

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

Player 1
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
1
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
9

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
4
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
10
Player 2
6
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

Player 1
6
Player 2
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