Back

SVG Drawing Match #881

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An astronaut pouring tea for a hovering cat in zero gravity"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="grad1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#e0f7fa; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#80deea; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#b3e5fc; stop-opacity:1" />
    </linearGradient>
    <pattern id="pattern1" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#ffffff" />
    </pattern>
    <radialGradient id="grad3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ffeb3b; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#fbc02d; stop-opacity:1" />
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#grad1)" />
  
  <!-- Stars -->
  <g fill="url(#pattern1)">
    <circle cx="30" cy="40" r="1.5"/>
    <circle cx="80" cy="20" r="1"/>
    <circle cx="150" cy="60" r="1.2"/>
    <circle cx="220" cy="30" r="1"/>
    <circle cx="270" cy="50" r="1.5"/>
    <circle cx="60" cy="150" r="1"/>
    <circle cx="200" cy="200" r="1.2"/>
    <circle cx="240" cy="240" r="1"/>
    <circle cx="100" cy="220" r="1.5"/>
    <circle cx="180" cy="130" r="1"/>
  </g>
  
  <!-- Astronaut -->
  <g id="astronaut" transform="translate(80, 120)">
    <!-- Helmet -->
    <circle cx="50" cy="50" r="30" fill="#ffffff" stroke="#90a4ae" stroke-width="2"/>
    <circle cx="42" cy="45" r="5" fill="#000000"/>
    <circle cx="58" cy="45" r="5" fill="#000000"/>
    <!-- Body -->
    <rect x="35" y="60" width="30" height="50" fill="#b0bec5" stroke="#90a4ae" stroke-width="2"/>
    <!-- Arms -->
    <line x1="35" y1="65" x2="20" y2="80" stroke="#90a4ae" stroke-width="3"/>
    <line x1="65" y1="65" x2="80" y2="80" stroke="#90a4ae" stroke-width="3"/>
    <!-- Gloves -->
    <circle cx="20" cy="80" r="5" fill="#ffffff" stroke="#90a4ae" stroke-width="2"/>
    <circle cx="80" cy="80" r="5" fill="#ffffff" stroke="#90a4ae" stroke-width="2"/>
    <!-- Boots -->
    <rect x="35" y="110" width="12" height="10" fill="#616161" stroke="#424242" stroke-width="1"/>
    <rect x="53" y="110" width="12" height="10" fill="#616161" stroke="#424242" stroke-width="1"/>
    <!-- Tea Pot -->
    <path d="M10,50 Q15,45 20,50 T30,50" fill="#ffcc80" stroke="#ff9800" stroke-width="2"/>
    <path d="M30,50 L40,40" stroke="#ff9800" stroke-width="2"/>
    <path d="M40,40 Q42,38 44,40 T48,40" fill="#ffcc80" stroke="#ff9800" stroke-width="2"/>
    <line x1="44" y1="40" x2="50" y2="35" stroke="#ff9800" stroke-width="2" />
    <path d="M50,35 Q52,33 54,35 T58,35" fill="none" stroke="#ff9800" stroke-width="2" />
    <path d="M50,35 Q48,37 46,35 T42,35" fill="none" stroke="#ff9800" stroke-width="2" />
  </g>
  
  <!-- Hovering Cat -->
  <g id="cat" transform="translate(180, 80)">
    <!-- Body -->
    <ellipse cx="50" cy="50" rx="20" ry="15" fill="#ffab91" stroke="#bf360c" stroke-width="2"/>
    <!-- Head -->
    <circle cx="50" cy="30" r="10" fill="#ffab91" stroke="#bf360c" stroke-width="2"/>
    <!-- Ears -->
    <polygon points="45,25 43,20 47,22" fill="#ffab91" stroke="#bf360c" stroke-width="1"/>
    <polygon points="55,25 57,20 53,22" fill="#ffab91" stroke="#bf360c" stroke-width="1"/>
    <!-- Eyes -->
    <circle cx="48" cy="28" r="2" fill="#000000"/>
    <circle cx="52" cy="28" r="2" fill="#000000"/>
    <!-- Tail -->
    <path d="M30,50 Q25,45 30,40" stroke="#bf360c" stroke-width="2" fill="none"/>
    <path d="M70,50 Q75,55 70,60" stroke="#bf360c" stroke-width="2" fill="none"/>
    <!-- Floating Tea Cup -->
    <g transform="translate(-10, -30)">
      <ellipse cx="10" cy="10" rx="8" ry="4" fill="#ffffff" stroke="#000000" stroke-width="1"/>
      <rect x="6" y="10" width="8" height="10" fill="#ffffff" stroke="#000000" stroke-width="1"/>
      <path d="M14,15 Q16,14 16,16" stroke="#000000" stroke-width="1" fill="none"/>
    </g>
  </g>
  
  <!-- Tea Droplets -->
  <g fill="#ffe0b2">
    <circle cx="150" cy="100" r="2"/>
    <circle cx="160" cy="110" r="1.5"/>
    <circle cx="140" cy="90" r="1.5"/>
    <circle cx="155" cy="95" r="1"/>
    <circle cx="165" cy="105" r="1"/>
  </g>
  
  <!-- Zero Gravity Lines -->
  <path d="M100,200 Q120,180 140,200" stroke="#ffffff" stroke-width="0.5" stroke-dasharray="2,2" fill="none"/>
  <path d="M200,100 Q220,80 240,100" stroke="#ffffff" stroke-width="0.5" stroke-dasharray="2,2" fill="none"/>
  <path d="M50,250 Q70,230 90,250" stroke="#ffffff" stroke-width="0.5" stroke-dasharray="2,2" fill="none"/>
  
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#000428; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#004e92; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="catGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffcc00; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff9900; stop-opacity:1" />
    </radialGradient>
    <pattern id="spaceDust" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="2" cy="2" r="2" fill="white" />
      <circle cx="8" cy="8" r="3" fill="white" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#spaceGradient)" />
  <rect width="300" height="300" fill="url(#spaceDust)" opacity="0.2" />
  
  <g transform="translate(150,150)">
    <g transform="rotate(20)">
      <path d="M-20,-40 Q-25,-60 -10,-70 Q10,-60 20,-40 Q10,-20 -10,-10 Q-15,-15 -20,-40" fill="lightblue" />
      <rect x="-30" y="-80" width="60" height="10" fill="grey" />
      <path d="M-25,-80 Q-30,-90 0,-90 Q30,-90 25,-80" fill="lightgrey" />
    </g>
  
    <g transform="translate(30,-30)">
      <path d="M-15,0 C-15,-20 -5,-25 0,-25 C5,-25 15,-20 15,0 C15,20 5,25 0,25 C-5,25 -15,20 -15,0 Z" fill="url(#catGradient)" />
      <circle cx="-10" cy="-5" r="2" fill="black" />
      <circle cx="10" cy="-5" r="2" fill="black" />
      <path d="M-2,10 C-5,8 -5,6 -2,5 C-4,7 -4,8 -2,10 Z" fill="pink" />
    </g>

    <line x1="20" y1="-40" x2="30" y2="-50" stroke="brown" stroke-width="2" />
    <circle cx="30" cy="-50" r="6" fill="green" />
  </g>

  <text x="150" y="280" font-family="Arial" font-size="20" fill="white" text-anchor="middle">Zero Gravity Tea Time</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image is more aligned with the prompt, depicting both an astronaut and a hovering cat in a whimsical, minimalistic style.

    The composition includes elements like a floating object, suggesting zero gravity, which adds to the narrative.

    Player 2's image is less clear in portraying the theme, lacking distinct elements that represent the astronaut and cat interaction.

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
47
Player 2
13
Rectangles

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

Player 1
5
Player 2
3
Circles

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

Player 1
24
Player 2
5
Ellipses

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

Player 1
2
Player 2
Lines

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

Player 1
3
Player 2
1
Polygons

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

Player 1
2
Player 2
Paths

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

Player 1
11
Player 2
4
Groups

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

Player 1
5
Player 2
3

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
8

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

Complexity Metrics

Path Commands

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

Player 1
26
Player 2
18
Max Group Nesting

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

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

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