Back

SVG Drawing Match #715

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Galactic tea party with planets as cups and stars as sugar cubes"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(10,10,50);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,0,0);stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(200,100,180);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(80,10,90);stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars as Sugar Cubes -->
  <g fill="white" opacity="0.8">
    <rect x="30" y="20" width="10" height="10" transform="rotate(45 35 25)" />
    <rect x="260" y="40" width="8" height="8" transform="rotate(45 264 44)" />
    <rect x="200" y="70" width="12" height="12" transform="rotate(45 206 76)" />
    <rect x="140" y="150" width="10" height="10" transform="rotate(35 145 155)" />
    <rect x="40" y="220" width="6" height="6" transform="rotate(45 43 223)" />
    <rect x="270" y="220" width="10" height="10" transform="rotate(45 275 225)" />
  </g>

  <!-- Planets as Cups -->
  <g transform="translate(30,30)">
    <circle cx="50" cy="50" r="50" fill="url(#planetGradient)" />
    <path d="M35,5 Q50,0 65,5" fill="none" stroke="white" stroke-width="3" />
    <ellipse cx="50" cy="95" rx="30" ry="5" fill="rgb(10,10,50)" />
  </g>
  <g transform="translate(180,70)">
    <circle cx="35" cy="35" r="35" fill="url(#planetGradient)" />
    <path d="M25,5 Q35,0 45,5" fill="none" stroke="white" stroke-width="2" />
    <ellipse cx="35" cy="75" rx="20" ry="4" fill="rgb(10,10,50)" />
  </g>
  <g transform="translate(80,180)">
    <circle cx="40" cy="40" r="40" fill="url(#planetGradient)" />
    <path d="M25,5 Q40,0 55,5" fill="none" stroke="white" stroke-width="3" />
    <ellipse cx="40" cy="85" rx="25" ry="5" fill="rgb(10,10,50)" />
  </g>

  <!-- Tea Tags -->
  <line x1="80" y1="150" x2="50" y2="115" stroke="white" stroke-width="1" />
  <line x1="230" y1="120" x2="195" y2="90" stroke="white" stroke-width="1" />
  <line x1="130" y1="245" x2="100" y2="215" stroke="white" stroke-width="1" />

  <!-- Floating Space Leaves -->
  <g fill="rgb(2,100,70)" opacity="0.7">
    <path d="M60,220 Q70,190 90,210 T130,250 Q110,260 90,240 Z" />
    <path d="M170,20 Q180,-10 210,10 T250,40 Q230,50 210,30 Z" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions -->
  <defs>
    <!-- Background Gradient -->
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#1a1a2e"/>
      <stop offset="100%" stop-color="#000414"/>
    </radialGradient>
    
    <!-- Star Symbol -->
    <symbol id="star" viewBox="0 0 24 24">
      <polygon points="12,2 15,9 22,9 17,14 19,21 12,17 5,21 7,14 2,9 9,9" fill="currentColor"/>
    </symbol>
    
    <!-- Planet Gradients -->
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6ec7"/>
      <stop offset="100%" stop-color="#c70039"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#00d2ff"/>
      <stop offset="100%" stop-color="#3a7bd5"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#00ff85"/>
      <stop offset="100%" stop-color="#00756f"/>
    </radialGradient>
    
    <!-- Table Gradient -->
    <linearGradient id="tableGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#8B4513"/>
      <stop offset="100%" stop-color="#5d2e0c"/>
    </linearGradient>
    
    <!-- Sugar Bowl Gradient -->
    <radialGradient id="bowlGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#cccccc"/>
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Stars in Background -->
  <g fill="white" opacity="0.8">
    <use href="#star" x="30" y="40" width="4" height="4"/>
    <use href="#star" x="80" y="70" width="2" height="2"/>
    <use href="#star" x="150" y="20" width="3" height="3"/>
    <use href="#star" x="220" y="80" width="2.5" height="2.5"/>
    <use href="#star" x="270" y="40" width="1.5" height="1.5"/>
    <use href="#star" x="50" y="250" width="3" height="3"/>
    <use href="#star" x="280" y="200" width="1" height="1"/>
    <use href="#star" x="120" y="180" width="2" height="2"/>
    <use href="#star" x="200" y="100" width="4" height="4"/>
    <use href="#star" x="60" y="220" width="1.5" height="1.5"/>
    <use href="#star" x="130" y="270" width="1" height="1"/>
    <use href="#star" x="210" y="230" width="2.5" height="2.5"/>
    <use href="#star" x="240" y="150" width="3" height="3"/>
  </g>
  
  <!-- Table -->
  <ellipse cx="150" cy="250" rx="130" ry="20" fill="url(#tableGradient)" />
  
  <!-- Planet Cups -->
  <g>
    <!-- Cup 1 -->
    <circle cx="90" cy="220" r="20" fill="url(#planet1)" stroke="#fff" stroke-width="1"/>
    <path d="M110,220 a10,10 0 0,1 0,20" fill="none" stroke="#fff" stroke-width="1"/>
    
    <!-- Cup 2 -->
    <circle cx="150" cy="220" r="20" fill="url(#planet2)" stroke="#fff" stroke-width="1"/>
    <path d="M170,220 a10,10 0 0,1 0,20" fill="none" stroke="#fff" stroke-width="1"/>
    
    <!-- Cup 3 -->
    <circle cx="210" cy="220" r="20" fill="url(#planet3)" stroke="#fff" stroke-width="1"/>
    <path d="M230,220 a10,10 0 0,1 0,20" fill="none" stroke="#fff" stroke-width="1"/>
  </g>
  
  <!-- Sugar Bowl -->
  <ellipse cx="150" cy="240" rx="30" ry="10" fill="url(#bowlGradient)" stroke="#fff" stroke-width="1"/>
  <ellipse cx="150" cy="240" rx="30" ry="5" fill="none" stroke="#fff" stroke-width="1"/>
  
  <!-- Sugar Cubes (Stars) -->
  <g fill="yellow">
    <use href="#star" x="135" y="230" width="4" height="4"/>
    <use href="#star" x="155" y="235" width="2.5" height="2.5"/>
    <use href="#star" x="160" y="225" width="3" height="3"/>
    <use href="#star" x="140" y="240" width="1.5" height="1.5"/>
  </g>
  
  <!-- Steam Comets -->
  <g stroke="white" stroke-width="1" fill="none" opacity="0.7">
    <path d="M90,200 C85,190 95,185 90,180"/>
    <path d="M150,200 C145,190 155,185 150,180"/>
    <path d="M210,200 C205,190 215,185 210,180"/>
  </g>
  
  <!-- Additional Stars on Cups -->
  <g fill="white" opacity="0.6">
    <circle cx="80" cy="210" r="1.5"/>
    <circle cx="160" cy="210" r="1"/>
    <circle cx="220" cy="210" r="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission creatively integrates the concept of a tea party by depicting planets as teacups with distinct handles and placing them on a surface, suggesting a table.

    This image effectively combines elements of a galactic scene with the tea party theme, making it visually appealing and conceptually cohesive.

    Player 1's submission, while colorful, lacks clear representation of the prompt, as the planets and stars are less recognizable in the context 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
17
Rectangles

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

Player 1
7
Player 2
1
Circles

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

Player 1
3
Player 2
6
Ellipses

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

Player 1
3
Player 2
3
Lines

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

Player 1
3
Player 2
Polygons

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

Player 1
Player 2
1
Paths

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

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

The number of elements with opacity attributes in the SVG.

Player 1
2
Player 2
3
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
15

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
9
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
16
Player 2
12
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
2
Player 2
7
Use Elements

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

Player 1
Player 2
17

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