Back

SVG Drawing Match #2627

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two robots having a tea party on a floating cloud."

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cloud-gradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#e0e6ff"/>
    </radialGradient>
    <linearGradient id="metal" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#BBB"/>
      <stop offset="50%" stop-color="#EEE"/>
      <stop offset="100%" stop-color="#999"/>
    </linearGradient>
  </defs>

  <!-- Cloud Base -->
  <path d="M50,160 C20,160 20,200 50,200 L250,200 C280,200 280,160 250,160 C260,120 230,120 220,140 C220,100 180,100 170,120 C160,80 120,80 110,110 C100,90 60,90 50,160" fill="url(#cloud-gradient)"/>

  <!-- Robot 1 -->
  <g transform="translate(90,140)">
    <rect x="-20" y="-30" width="40" height="50" rx="5" fill="url(#metal)"/>
    <circle cx="0" cy="-40" r="15" fill="url(#metal)"/>
    <circle cx="-8" cy="-43" r="4" fill="#00f"/>
    <circle cx="8" cy="-43" r="4" fill="#00f"/>
    <rect x="-10" y="-35" width="20" height="3" fill="#333"/>
    <path d="M-5,-25 L5,-25" stroke="#333" stroke-width="2"/>
  </g>

  <!-- Robot 2 -->
  <g transform="translate(210,140)">
    <rect x="-20" y="-30" width="40" height="50" rx="5" fill="url(#metal)"/>
    <circle cx="0" cy="-40" r="15" fill="url(#metal)"/>
    <circle cx="-8" cy="-43" r="4" fill="#f00"/>
    <circle cx="8" cy="-43" r="4" fill="#f00"/>
    <rect x="-10" y="-35" width="20" height="3" fill="#333"/>
    <path d="M-5,-25 L5,-25" stroke="#333" stroke-width="2"/>
  </g>

  <!-- Tea Set -->
  <g transform="translate(150,160)">
    <ellipse cx="0" cy="0" rx="30" ry="10" fill="#fff" stroke="#pink" stroke-width="2"/>
    <path d="M-15,-5 L-15,0 M15,-5 L15,0" stroke="#pink" stroke-width="2"/>
    <circle cx="-10" cy="-3" r="5" fill="#ff69b4"/>
    <circle cx="10" cy="-3" r="5" fill="#ff69b4"/>
  </g>

  <!-- Steam -->
  <g stroke="#aaa" fill="none" stroke-width="2">
    <path d="M140,150 Q145,140 140,130 Q135,120 140,110" stroke-dasharray="2,4"/>
    <path d="M160,150 Q165,140 160,130 Q155,120 160,110" stroke-dasharray="2,4"/>
  </g>

  <!-- Robot Arms -->
  <path d="M110,130 L140,155" stroke="#888" stroke-width="3"/>
  <path d="M190,130 L160,155" stroke="#888" stroke-width="3"/>
</svg>
SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="skyGrad" cx="50%" cy="0%" r="100%">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </radialGradient>
    <linearGradient id="cloudGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#F0F8FF" stop-opacity="0.9"/>
    </linearGradient>
    <linearGradient id="metal" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ccc"/>
      <stop offset="100%" stop-color="#888"/>
    </linearGradient>
    <filter id="cloudBlur" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="5"/>
    </filter>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#000" flood-opacity="0.3"/>
    </filter>
    <pattern id="teaPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="#D2691E"/>
    </pattern>
  </defs>
  <!-- Sky background -->
  <rect width="300" height="300" fill="url(#skyGrad)" />
  <!-- Floating cloud -->
  <g filter="url(#cloudBlur)">
    <path d="M40,180 
             C20,160 20,140 60,130 
             C80,100 140,110 160,130 
             C200,120 240,150 220,180 
             C260,190 260,220 200,210 
             C180,240 120,230 100,210 
             C60,220 60,200 40,180Z"
          fill="url(#cloudGrad)" />
  </g>
  <!-- Tea table -->
  <ellipse cx="150" cy="180" rx="40" ry="10" fill="#8B5A2B" filter="url(#shadow)"/>
  <rect x="130" y="150" width="40" height="30" rx="5" ry="5" fill="#A0522D" filter="url(#shadow)"/>
  <!-- Teapot -->
  <g transform="translate(140,140)">
    <ellipse cx="0" cy="10" rx="12" ry="6" fill="url(#metal)"/>
    <path d="M-12,10 h24 a10,10 0 0,1 0,20 h-24 a10,10 0 0,1 0,-20Z" fill="url(#metal)"/>
    <path d="M12,15 q15,0 15,15 q0,10 -15,10" fill="url(#metal)"/>
    <circle cx="0" cy="10" r="3" fill="#B22222"/>
  </g>
  <!-- Cups -->
  <g fill="url(#metal)">
    <g transform="translate(125,165)">
      <ellipse cx="0" cy="4" rx="8" ry="4" fill="#F5DEB3"/>
      <rect x="-8" y="4" width="16" height="8" fill="#F5DEB3"/>
      <path d="M8,6 q6,0 6,6 q0,4 -6,4" fill="#F5DEB3"/>
      <ellipse cx="0" cy="8" rx="6" ry="2" fill="url(#teaPattern)"/>
    </g>
    <g transform="translate(175,165)">
      <ellipse cx="0" cy="4" rx="8" ry="4" fill="#F5DEB3"/>
      <rect x="-8" y="4" width="16" height="8" fill="#F5DEB3"/>
      <path d="M8,6 q6,0 6,6 q0,4 -6,4" fill="#F5DEB3"/>
      <ellipse cx="0" cy="8" rx="6" ry="2" fill="url(#teaPattern)"/>
    </g>
  </g>
  <!-- Left robot -->
  <g transform="translate(90,130)">
    <!-- Body -->
    <rect x="-15" y="0" width="30" height="40" rx="5" ry="5" fill="url(#metal)" filter="url(#shadow)"/>
    <!-- Head -->
    <rect x="-12" y="-25" width="24" height="24" rx="4" ry="4" fill="url(#metal)"/>
    <circle cx="-6" cy="-13" r="3" fill="#00BFFF"/>
    <circle cx="6" cy="-13" r="3" fill="#00BFFF"/>
    <rect x="-4" y="-2" width="8" height="2" fill="#444"/>
    <!-- Arm -->
    <line x1="15" y1="10" x2="30" y2="20" stroke="url(#metal)" stroke-width="4" stroke-linecap="round"/>
    <circle cx="30" cy="20" r="3" fill="url(#metal)"/>
    <!-- Leg -->
    <rect x="-10" y="40" width="8" height="20" fill="url(#metal)"/>
    <rect x="2" y="40" width="8" height="20" fill="url(#metal)"/>
  </g>
  <!-- Right robot -->
  <g transform="translate(210,130)">
    <!-- Body -->
    <rect x="-15" y="0" width="30" height="40" rx="5" ry="5" fill="url(#metal)" filter="url(#shadow)"/>
    <!-- Head -->
    <circle cx="0" cy="-18" r="12" fill="url(#metal)"/>
    <circle cx="-4" cy="-20" r="2" fill="#FFD700"/>
    <circle cx="4" cy="-20" r="2" fill="#FFD700"/>
    <path d="M-5,-12 q5,5 10,0" stroke="#444" stroke-width="2" fill="none"/>
    <!-- Arm -->
    <line x1="-15" y1="15" x2="-30" y2="25" stroke="url(#metal)" stroke-width="4" stroke-linecap="round"/>
    <circle cx="-30" cy="25" r="3" fill="url(#metal)"/>
    <!-- Leg -->
    <rect x="-10" y="40" width="8" height="20" fill="url(#metal)"/>
    <rect x="2" y="40" width="8" height="20" fill="url(#metal)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini low (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission is more detailed and visually appealing, with a clear depiction of a tea party setup including a teapot, cups, and snacks.

    The composition feels more complete and adheres better to the prompt.

    Player 1's image, while creative, is simpler and lacks the detail necessary to fully capture the concept of a tea party.

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
21
Player 2
35
Rectangles

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

Player 1
4
Player 2
12
Circles

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

Player 1
8
Player 2
9
Ellipses

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

Player 1
1
Player 2
6
Lines

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

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

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

Player 1
4
Player 2
7

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
3
Patterns

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

Player 1
Player 2
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
14

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
5

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