Back

SVG Drawing Match #2388

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Robot chef flipping pancakes on a spaceship kitchen with Earth visible through a window."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Definitions for gradients -->
  <defs>
    <!-- Gradient for spaceship interior -->
    <linearGradient id="shipGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#0d1b2a"/>
      <stop offset="100%" stop-color="#1b263b"/>
    </linearGradient>
    <!-- Gradient for Earth -->
    <radialGradient id="earthGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#2ec4b6"/>
      <stop offset="100%" stop-color="#011627"/>
    </radialGradient>
    <!-- Gradient for robot chef body -->
    <linearGradient id="robotGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#f7f7f7"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </linearGradient>
    <!-- Gradient for pancake -->
    <radialGradient id="pancakeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fce38a"/>
      <stop offset="100%" stop-color="#f38181"/>
    </radialGradient>
  </defs>
  
  <!-- Background: spaceship kitchen wall -->
  <rect x="0" y="0" width="300" height="300" fill="url(#shipGradient)"/>
  
  <!-- Space window showing Earth -->
  <circle cx="240" cy="60" r="40" fill="url(#earthGradient)"/>
  <circle cx="240" cy="60" r="35" fill="none" stroke="#a8dadc" stroke-width="2"/>
  <!-- Criss-cross lines on window -->
  <line x1="240" y1="20" x2="240" y2="100" stroke="#a8dadc" stroke-width="1" />
  <line x1="200" y1="60" x2="280" y2="60" stroke="#a8dadc" stroke-width="1" />
  
  <!-- Spaceship kitchen elements -->
  <!-- Floor -->
  <rect x="0" y="220" width="300" height="80" fill="#415a77"/>
  <!-- Counter -->
  <rect x="10" y="180" width="280" height="40" rx="10" fill="#1b263b" stroke="#f7f7f7" stroke-width="1"/>
  
  <!-- Robot chef body -->
  <g id="robotChef">
    <!-- Head -->
    <rect x="50" y="60" width="40" height="40" rx="8" fill="url(#robotGradient)" stroke="#333" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="62" cy="75" r="3" fill="#000"/>
    <circle cx="78" cy="75" r="3" fill="#000"/>
    <!-- Antenna -->
    <line x1="70" y1="60" x2="70" y2="45" stroke="#333" stroke-width="2"/>
    <circle cx="70" cy="42" r="3" fill="#e63946"/>
    
    <!-- Body -->
    <rect x="48" y="100" width="44" height="50" rx="6" fill="url(#robotGradient)" stroke="#333" stroke-width="1"/>
    <!-- Chef hat -->
    <path d="M45,55 q25 -30 50 0" fill="#fff" stroke="#ccc" stroke-width="1"/>
    
    <!-- Left Arm (flipping pancake) -->
    <g id="arm">
      <rect x="30" y="110" width="18" height="6" rx="3" fill="url(#robotGradient)" stroke="#333" stroke-width="1"/>
      <!-- Hand -->
      <circle cx="28" cy="113" r="4" fill="url(#robotGradient)" stroke="#333" stroke-width="1"/>
      <!-- Pancake in hand flipping -->
      <g id="pancake">
        <ellipse cx="20" cy="100" rx="10" ry="4" fill="url(#pancakeGradient)" stroke="#d62828" stroke-width="1"/>
        <line x1="10" y1="100" x2="30" y2="100" stroke="#d62828" stroke-width="0.5"/>
      </g>
    </g>
    
    <!-- Right Arm (holding spatula) -->
    <g id="arm2">
      <rect x="92" y="110" width="18" height="6" rx="3" fill="url(#robotGradient)" stroke="#333" stroke-width="1"/>
      <!-- Hand -->
      <circle cx="112" cy="113" r="4" fill="url(#robotGradient)" stroke="#333" stroke-width="1"/>
      <!-- Spatula -->
      <rect x="115" y="105" width="2" height="20" fill="#f7f7f7"/>
      <ellipse cx="116" cy="105" rx="4" ry="2" fill="#f7f7f7" stroke="#ccc" stroke-width="0.5"/>
    </g>
  </g>
  
  <!-- Floating utensils as decoration -->
  <g id="utensils">
    <line x1="160" y1="50" x2="180" y2="30" stroke="#e63946" stroke-width="2"/>
    <line x1="160" y1="60" x2="180" y2="40" stroke="#e63946" stroke-width="2"/>
    <!-- Some small stars -->
    <circle cx="20" cy="20" r="1.5" fill="#fff"/>
    <circle cx="280" cy="20" r="1.5" fill="#fff"/>
    <circle cx="250" cy="280" r="1.5" fill="#fff"/>
    <circle cx="30" cy="280" r="1.5" fill="#fff"/>
  </g>
  
  <!-- Additional spaceship details -->
  <path d="M10,180 l0,-30 a5,5 0 0,1 5,-5 h270 a5,5 0 0,1 5,5 l0,30" fill="none" stroke="#f7f7f7" stroke-width="2"/>
  
  <!-- Decorative steam/heat lines from cooking area -->
  <path d="M100,170 q5 -10 10 0" fill="none" stroke="#f7f7f7" stroke-width="1" stroke-dasharray="2,2"/>
  <path d="M120,165 q5 -12 10 0" fill="none" stroke="#f7f7f7" stroke-width="1" stroke-dasharray="2,2"/>
  
</svg>
SVG by o4-mini medium (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="metallic" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#e0e0e0"/>
      <stop offset="50%" stop-color="#a0a0a0"/>
      <stop offset="100%" stop-color="#d0d0d0"/>
    </linearGradient>
    <linearGradient id="floorGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#444"/>
      <stop offset="100%" stop-color="#222"/>
    </linearGradient>
    <radialGradient id="earthBlue" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#6ce"/>
      <stop offset="100%" stop-color="#036"/>
    </radialGradient>
    <radialGradient id="pancakeGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f4c27b"/>
      <stop offset="100%" stop-color="#d18b47"/>
    </radialGradient>
    <linearGradient id="robotShine" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="50%" stop-color="#ddd"/>
      <stop offset="100%" stop-color="#aaa"/>
    </linearGradient>
  </defs>

  <!-- Background and floor -->
  <rect width="300" height="300" fill="url(#metallic)"/>
  <rect y="0" width="300" height="200" fill="#555"/>
  <rect y="200" width="300" height="100" fill="url(#floorGrad)"/>
  <g stroke="#666" stroke-width="1">
    <line x1="0" y1="0" x2="0" y2="200"/>
    <line x1="50" y1="0" x2="50" y2="200"/>
    <line x1="100" y1="0" x2="100" y2="200"/>
    <line x1="150" y1="0" x2="150" y2="200"/>
    <line x1="200" y1="0" x2="200" y2="200"/>
    <line x1="250" y1="0" x2="250" y2="200"/>
    <line x1="300" y1="0" x2="300" y2="200"/>
  </g>

  <!-- Window with Earth and stars -->
  <g>
    <circle cx="230" cy="70" r="55" fill="none" stroke="#888" stroke-width="5"/>
    <clipPath id="windowClip"><circle cx="230" cy="70" r="50"/></clipPath>
    <g clip-path="url(#windowClip)">
      <rect x="180" y="20" width="100" height="100" fill="#000"/>
      <!-- Stars -->
      <circle cx="200" cy="40" r="1.5" fill="#fff"/>
      <circle cx="220" cy="55" r="1" fill="#fff"/>
      <circle cx="250" cy="50" r="1.2" fill="#fff"/>
      <circle cx="240" cy="80" r="1" fill="#fff"/>
      <circle cx="210" cy="90" r="1.3" fill="#fff"/>
      <circle cx="270" cy="65" r="1" fill="#fff"/>
      <circle cx="260" cy="35" r="1.4" fill="#fff"/>
      <circle cx="225" cy="30" r="1.1" fill="#fff"/>
      <!-- Earth -->
      <circle cx="230" cy="70" r="35" fill="url(#earthBlue)" stroke="#fff" stroke-width="1"/>
      <path d="M215,70c5,-5 15,-8 20,0c5,8 0,15 -8,12c-5,-2 -12,2 -12,-5z" fill="#3a5"/>
      <path d="M235,85c-6,-4 -14,-6 -18,0c-4,6 2,8 6,10c4,2 12,-1 12,-7z" fill="#3a5"/>
    </g>
  </g>

  <!-- Kitchen counter and burners -->
  <rect x="50" y="160" width="200" height="20" fill="#777" stroke="#555" stroke-width="2"/>
  <circle cx="120" cy="170" r="8" fill="#222" stroke="#444" stroke-width="2"/>
  <circle cx="120" cy="170" r="4" fill="#444"/>
  <circle cx="180" cy="170" r="8" fill="#222" stroke="#444" stroke-width="2"/>
  <circle cx="180" cy="170" r="4" fill="#444"/>

  <!-- Robot Chef -->
  <g transform="translate(90,120)">
    <!-- Body -->
    <rect x="20" y="40" width="40" height="50" rx="8" fill="url(#robotShine)" stroke="#888" stroke-width="2"/>
    <!-- Head -->
    <ellipse cx="40" cy="30" rx="20" ry="20" fill="url(#robotShine)" stroke="#888" stroke-width="2"/>
    <circle cx="30" cy="25" r="3" fill="#333"/>
    <circle cx="50" cy="25" r="3" fill="#333"/>
    <rect x="33" y="35" width="14" height="3" rx="1" fill="#888"/>
    <!-- Left arm with spatula -->
    <g>
      <path d="M20,60 L0,80 L0,85" stroke="#888" stroke-width="4" fill="none"/>
      <rect x="-5" y="85" width="20" height="5" fill="#555" stroke="#333" stroke-width="1"/>
      <circle cx="5" cy="75" r="8" fill="url(#pancakeGrad)" stroke="#b36" stroke-width="1"/>
    </g>
    <!-- Right arm -->
    <path d="M60,60 L100,50" stroke="#888" stroke-width="4" fill="none"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission is more visually appealing and adheres better to the prompt.

    The robot chef is clearly depicted flipping a pancake, and the inclusion of Earth through the window provides a stronger sense of being in a spaceship.

    The composition is cleaner and more creative compared to Player 2's less dynamic presentation and muted background details.

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

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

Player 1
8
Player 2
8
Circles

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

Player 1
11
Player 2
18
Ellipses

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

Player 1
2
Player 2
1
Lines

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

Player 1
6
Player 2
7
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
4
Player 2
4
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
4
Player 2
5
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
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
1
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
20
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
20

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
1

Complexity Metrics

Path Commands

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

Player 1
12
Player 2
15
Max Group Nesting

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

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