Back

SVG Drawing Match #284

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A teacup sailing a stormy ocean under a crescent moon"

SVG by GPT-3.5 turbo (0125)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Ocean background -->
  <rect x="0" y="0" width="300" height="300" fill="#1872B9" />
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="#F1E8B8" />
  
  <!-- Clouds -->
  <circle cx="50" cy="70" r="20" fill="#FFFFFF" />
  <circle cx="80" cy="60" r="25" fill="#FFFFFF" />
  <circle cx="110" cy="70" r="20" fill="#FFFFFF" />
  
  <!-- Teacup -->
  <path d="M150 150 Q130 100 110 150 Q100 175 125 200 Q140 220 160 200 Q185 180 190 150 Z" fill="#FFD700" />
  <path d="M150 150 Q135 115 140 150 Q142 168 150 180 Q152 168 160 150 Q165 135 160 130 Z" fill="#DAA520" />
  
  <!-- Sail -->
  <path d="M150 150 Q140 100 125 150 Q115 180 150 200 Q155 210 170 200 Q195 180 200 150 Z" fill="#FFFFFF" />
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0b3d91"/>
      <stop offset="100%" stop-color="#1e3c72"/>
    </linearGradient>
    <radialGradient id="moonGradient" cx="0.8" cy="0.2" r="0.5">
      <stop offset="0%" stop-color="#fefcea"/>
      <stop offset="100%" stop-color="#f1e4b9"/>
    </radialGradient>
    <linearGradient id="waveGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#3a7bd5"/>
      <stop offset="50%" stop-color="#00d2ff"/>
      <stop offset="100%" stop-color="#3a7bd5"/>
    </linearGradient>
    <linearGradient id="cupGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#f0f0f0" />
    </linearGradient>
    <pattern id="texture" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0,10 L10,0" stroke="#e0e0e0" stroke-width="1"/>
    </pattern>
  </defs>
  
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Crescent Moon -->
  <circle cx="240" cy="60" r="30" fill="url(#moonGradient)"/>
  <circle cx="255" cy="60" r="30" fill="#1e3c72"/>
  
  <!-- Stormy Ocean -->
  <g transform="translate(0, 180)">
    <path d="M0,20 Q50,10 100,20 T200,20 T300,20 V100 H0 Z" fill="url(#waveGradient)" opacity="0.7"/>
    <path d="M0,40 Q60,30 120,40 T240,40 T300,40 V100 H0 Z" fill="url(#waveGradient)" opacity="0.5"/>
    <path d="M0,60 Q70,50 140,60 T280,60 T300,60 V100 H0 Z" fill="url(#waveGradient)" opacity="0.3"/>
  </g>
  
  <!-- Teacup Sailboat -->
  <g transform="translate(150, 180)">
    <!-- Cup Body -->
    <path d="M-30,0 
             L-30,20 
             C-30,25  -25,30  -20,30 
             L20,30 
             C25,30 30,25 30,20 
             L30,0 
             Z" fill="url(#cupGradient)" stroke="#ccc" stroke-width="2"/>
    <!-- Handle -->
    <path d="M30,10 
             C40,15 40,25 30,30" fill="none" stroke="#ccc" stroke-width="2"/>
    <!-- Sail -->
    <polygon points="0,0 0,-40 10,-30" fill="white" stroke="#ccc" stroke-width="1.5"/>
    <!-- Mast -->
    <line x1="0" y1="0" x2="0" y2="-40" stroke="#8b5a2b" stroke-width="2"/>
  </g>
  
  <!-- Stars -->
  <g fill="#fff">
    <circle cx="50" cy="50" r="1.5"/>
    <circle cx="80" cy="80" r="1"/>
    <circle cx="200" cy="40" r="1.2"/>
    <circle cx="220" cy="70" r="1"/>
    <circle cx="270" cy="50" r="1.3"/>
    <circle cx="290" cy="90" r="1"/>
    <circle cx="160" cy="30" r="1.1"/>
    <circle cx="130" cy="60" r="1"/>
    <circle cx="190" cy="20" r="1.4"/>
    <circle cx="240" cy="80" r="1"/>
  </g>
  
  <!-- Dark Clouds -->
  <g opacity="0.5">
    <ellipse cx="100" cy="100" rx="50" ry="20" fill="#2c3e50"/>
    <ellipse cx="130" cy="110" rx="40" ry="15" fill="#34495e"/>
    <ellipse cx="160" cy="100" rx="50" ry="20" fill="#2c3e50"/>
  </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 image effectively captures the prompt with a clear depiction of a teacup sailing on a stormy ocean under a crescent moon.

    The use of color gradients and the presence of a crescent moon and stars enhance the visual appeal and create a more atmospheric scene.

    Player 1's image, while creative, lacks the clarity and detail to fully convey the prompt's elements.

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
8
Player 2
24
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
4
Player 2
12
Ellipses

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

Player 1
Player 2
3
Lines

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

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

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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