Back

SVG Drawing Match #2449

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Alien playing chess with a robot on a floating asteroid."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: space with gradient and stars -->
  <defs>
    <radialGradient id="spaceGradient" cx="150" cy="150" r="150">
      <stop offset="0%" stop-color="#0a0a20"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
    <pattern id="asteroidTexture" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#5a4e42" />
    </pattern>
    <radialGradient id="chessboardGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#e0e0e0"/>
      <stop offset="100%" stop-color="#a0a0a0"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#spaceGradient)"/>
  
  <!-- Stars -->
  <g fill="white">
    <circle cx="30" cy="50" r="0.8"/>
    <circle cx="90" cy="20" r="1"/>
    <circle cx="200" cy="40" r="0.5"/>
    <circle cx="250" cy="80" r="1.2"/>
    <circle cx="140" cy="10" r="0.7"/>
    <circle cx="80" cy="230" r="1"/>
    <circle cx="220" cy="260" r="0.9"/>
    <circle cx="270" cy="210" r="1"/>
    <circle cx="50" cy="270" r="0.8"/>
    <circle cx="120" cy="150" r="0.6"/>
  </g>
  
  <!-- Floating Asteroid: a rough rocky platform -->
  <g id="asteroid">
    <ellipse cx="150" cy="220" rx="70" ry="30" fill="url(#asteroidTexture)" stroke="#3e332b" stroke-width="2"/>
    <!-- Craters -->
    <circle cx="130" cy="215" r="5" fill="#3e332b" fill-opacity="0.5"/>
    <circle cx="170" cy="225" r="7" fill="#3e332b" fill-opacity="0.5"/>
    <circle cx="150" cy="230" r="4" fill="#3e332b" fill-opacity="0.5"/>
  </g>
  
  <!-- Chessboard on asteroid -->
  <g id="chessboard" transform="translate(95 190)">
    <rect width="110" height="110" fill="url(#chessboardGradient)" stroke="#555" stroke-width="1"/>
    <!-- Create chess squares -->
    <g fill="#333">
      <rect x="0" y="0" width="13.75" height="13.75"/>
      <rect x="27.5" y="0" width="13.75" height="13.75"/>
      <rect x="55" y="0" width="13.75" height="13.75"/>
      <rect x="82.5" y="0" width="13.75" height="13.75"/>
      <rect x="0" y="27.5" width="13.75" height="13.75"/>
      <rect x="27.5" y="27.5" width="13.75" height="13.75" fill-opacity="0"/>
      <rect x="55" y="27.5" width="13.75" height="13.75"/>
      <rect x="82.5" y="27.5" width="13.75" height="13.75" fill-opacity="0"/>
      <rect x="0" y="55" width="13.75" height="13.75"/>
      <rect x="27.5" y="55" width="13.75" height="13.75"/>
      <rect x="55" y="55" width="13.75" height="13.75" fill-opacity="0"/>
      <rect x="82.5" y="55" width="13.75" height="13.75" fill-opacity="0"/>
      <rect x="0" y="82.5" width="13.75" height="13.75" fill-opacity="0"/>
      <rect x="27.5" y="82.5" width="13.75" height="13.75"/>
      <rect x="55" y="82.5" width="13.75" height="13.75" fill-opacity="0"/>
      <rect x="82.5" y="82.5" width="13.75" height="13.75"/>
    </g>
  </g>
  
  <!-- Alien figure -->
  <g id="alien" transform="translate(50 70)">
    <!-- Alien body with gradient -->
    <defs>
      <radialGradient id="alienGradient" cx="50%" cy="50%" r="50%">
        <stop offset="0%" stop-color="#7fffd4"/>
        <stop offset="100%" stop-color="#40e0d0"/>
      </radialGradient>
    </defs>
    <ellipse cx="30" cy="40" rx="20" ry="30" fill="url(#alienGradient)" stroke="#2aa79b" stroke-width="2"/>
    <!-- Big eyes -->
    <circle cx="22" cy="30" r="5" fill="white"/>
    <circle cx="38" cy="30" r="5" fill="white"/>
    <circle cx="22" cy="30" r="2" fill="#2aa79b"/>
    <circle cx="38" cy="30" r="2" fill="#2aa79b"/>
    <!-- Mouth -->
    <path d="M20,45 Q30,55 40,45" stroke="#2aa79b" stroke-width="2" fill="none"/>
    <!-- Chess piece in alien's hand -->
    <rect x="45" y="55" width="8" height="8" fill="#555" stroke="#333" stroke-width="1" transform="rotate(20 49 59)"/>
  </g>
  
  <!-- Robot figure -->
  <g id="robot" transform="translate(180 60)">
    <!-- Robot head -->
    <rect x="0" y="0" width="40" height="40" rx="5" ry="5" fill="#c0c0c0" stroke="#808080" stroke-width="2"/>
    <!-- Robot eyes -->
    <circle cx="12" cy="15" r="3" fill="#333"/>
    <circle cx="28" cy="15" r="3" fill="#333"/>
    <!-- Antenna -->
    <line x1="20" y1="0" x2="20" y2="-10" stroke="#808080" stroke-width="2"/>
    <circle cx="20" cy="-12" r="2" fill="#ff5050"/>
    <!-- Robot body -->
    <rect x="5" y="45" width="30" height="40" fill="#d0d0d0" stroke="#808080" stroke-width="2"/>
    <!-- Arms holding chess piece -->
    <line x1="5" y1="50" x2="-10" y2="60" stroke="#808080" stroke-width="3" stroke-linecap="round"/>
    <line x1="35" y1="50" x2="50" y2="60" stroke="#808080" stroke-width="3" stroke-linecap="round"/>
    <!-- Chess piece in robot's hand (right arm) -->
    <circle cx="50" cy="60" r="4" fill="#555" stroke="#333" stroke-width="1"/>
  </g>
  
  <!-- Floating chess pieces around the board to add atmosphere -->
  <g id="chessPieces" transform="translate(0,0)" fill="#b5651d">
    <circle cx="230" cy="150" r="5"/>
    <rect x="240" y="160" width="6" height="6" transform="rotate(45 243 163)" />
    <circle cx="70" cy="250" r="4"/>
  </g>
  
  <!-- Optional: Add a light glow effect at the bottom of the asteroid -->
  <radialGradient id="glow" cx="150" cy="220" r="80">
    <stop offset="0%" stop-color="rgba(255,255,200,0.5)"/>
    <stop offset="100%" stop-color="rgba(255,255,200,0)"/>
  </radialGradient>
  <ellipse cx="150" cy="220" rx="80" ry="35" fill="url(#glow)"/>
</svg>
SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background space -->
  <defs>
    <radialGradient id="spaceGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#0b0d3b"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <linearGradient id="asteroidGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#555"/>
      <stop offset="100%" stop-color="#222"/>
    </linearGradient>
    <linearGradient id="alienGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#7fffd4"/>
      <stop offset="100%" stop-color="#2e8b57"/>
    </linearGradient>
    <linearGradient id="robotGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#c0c0c0"/>
      <stop offset="100%" stop-color="#505050"/>
    </linearGradient>
    <pattern id="chessSquare" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect x="0" y="0" width="10" height="10" fill="#fff"/>
      <rect x="10" y="10" width="10" height="10" fill="#fff"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#spaceGrad)" />
  
  <!-- Floating asteroid -->
  <ellipse cx="150" cy="180" rx="80" ry="40" fill="url(#asteroidGrad)" stroke="#333" stroke-width="2" />
  
  <!-- Alien playing chess -->
  <!-- Alien body -->
  <g id="alien" transform="translate(100,130)">
    <circle cx="0" cy="0" r="25" fill="url(#alienGrad)" stroke="#006400" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-8" cy="-5" r="3" fill="#fff"/>
    <circle cx="8" cy="-5" r="3" fill="#fff"/>
    <circle cx="-8" cy="-5" r="1.5" fill="#000"/>
    <circle cx="8" cy="-5" r="1.5" fill="#000"/>
    <!-- Antennae -->
    <line x1="0" y1="-25" x2="-10" y2="-35" stroke="#006400" stroke-width="2"/>
    <line x1="0" y1="-25" x2="10" y2="-35" stroke="#006400" stroke-width="2"/>
    <!-- Antennae tips -->
    <circle cx="-10" cy="-35" r="2" fill="#ff0"/>
    <circle cx="10" cy="-35" r="2" fill="#ff0"/>
  </g>
  
  <!-- Robot -->
  <g id="robot" transform="translate(200,130)">
    <!-- Head -->
    <rect x="-15" y="-15" width="30" height="30" fill="url(#robotGrad)" stroke="#444" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-6" cy="-3" r="2" fill="#fff"/>
    <circle cx="6" cy="-3" r="2" fill="#fff"/>
    <circle cx="-6" cy="-3" r="1" fill="#000"/>
    <circle cx="6" cy="-3" r="1" fill="#000"/>
    <!-- Body -->
    <rect x="-20" y="15" width="40" height="20" fill="#999"/>
    <!-- Arms -->
    <line x1="-20" y1="20" x2="-35" y2="30" stroke="#999" stroke-width="3"/>
    <line x1="20" y1="20" x2="35" y2="30" stroke="#999" stroke-width="3"/>
    <!-- Hands -->
    <circle cx="-35" cy="30" r="3" fill="#999"/>
    <circle cx="35" cy="30" r="3" fill="#999"/>
  </g>
  
  <!-- Chessboard -->
  <rect x="130" y="150" width="40" height="40" fill="url(#chessSquare)" stroke="#333" stroke-width="1"/>
  <!-- Alternating squares -->
  <rect x="130" y="150" width="20" height="20" fill="#555"/>
  <rect x="150" y="150" width="20" height="20" fill="#fff"/>
  <rect x="130" y="170" width="20" height="20" fill="#fff"/>
  <rect x="150" y="170" width="20" height="20" fill="#555"/>
  
  <!-- Chess pieces -->
  <!-- Alien's piece -->
  <circle cx="135" cy="160" r="4" fill="#ff6347"/>
  <!-- Robot's piece -->
  <circle cx="165" cy="160" r="4" fill="#4682b4"/>
  
  <!-- Light glow around scene for atmosphere -->
  <circle cx="150" cy="150" r="120" fill="none" stroke="#aaa" stroke-width="0.5" opacity="0.3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4.1 nano (2025-04-14) Player 2

Judge's Analysis

    Player 2's submission is more cohesive and adheres better to the prompt.

    The alien and robot are clearly interacting over what resembles a chessboard on a floating asteroid with a well-executed space-like background.

    Player 1's submission lacks a clear depiction of the chess interaction and the asteroid is less defined, reducing its adherence to the prompt and overall visual appeal.

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
53
Player 2
31
Rectangles

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

Player 1
22
Player 2
10
Circles

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

Player 1
24
Player 2
16
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
3
Player 2
4
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
1
Player 2
Groups

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

Player 1
7
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
4
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
17

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

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

Player 1
1
Player 2
Defs Elements

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

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