Back

SVG Drawing Match #2118

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A teacup balancing on one wheel of a unicycle"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with gradient and pattern -->
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#E0FFFF;stop-opacity:1" />
    </linearGradient>
    <path id="star" d="M150 0l48 144-24 48-48-144-48 144 24-48 48-144z"/>
    <pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100">
      <use href="#star" fill="#FFFFFF"/>
    </pattern>
  </defs>

  <!-- Ground -->
  <line x1="0" y1="250" x2="300" y2="250" stroke="#8B4513" stroke-width="4"/>

  <!-- Unicycle wheel -->
  <g transform="translate(150 220)">
    <!-- Wheel rim -->
    <circle cx="0" cy="0" r="30" fill="none" stroke="#666" stroke-width="2"/>
    <!-- Tire -->
    <circle cx="0" cy="0" r="25" fill="#333"/>
    <!-- Spokes -->
    <path d="M0 0 L30 0 L0 0 L-30 0 L0 0 L0 30 L0 0 L0 -30 L0 0" 
          stroke="#444" stroke-width="1" fill="none"/>
    <!-- Hub -->
    <circle cx="0" cy="0" r="8" fill="#666"/>
  </g>

  <!-- Teacup -->
  <g transform="translate(150 180)">
    <!-- Cup -->
    <ellipse cx="0" cy="0" rx="20" ry="30" fill="#FFF" stroke="#666" stroke-width="1"/>
    <!-- Handle -->
    <path d="M-20 -10 Q-30 -10 -30 0 Q-30 10 -20 10" fill="#FFF" stroke="#666" stroke-width="1"/>
    <!-- Saucer -->
    <ellipse cx="0" cy="40" rx="30" ry="10" fill="#FFD700" stroke="#666" stroke-width="1"/>
    <!-- Steam -->
    <path d="M0 0 Q-10 -20 -20 -30 Q-30 -40 -20 -50 L-10 -60 L10 -60 L20 -50 Q30 -40 10 -30 Q0 -20 0 0" 
          stroke="#666" stroke-width="1" fill="none"/>
  </g>

  <!-- Shadows -->
  <ellipse cx="150" cy="240" rx="35" ry="15" fill="#666" opacity="0.5"/>
  <ellipse cx="150" cy="200" rx="25" ry="10" fill="#999" opacity="0.5"/>

  <!-- Background decoration -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <rect width="300" height="300" fill="url(#stars)"/>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <radialGradient id="wheelGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#555"/>
      <stop offset="100%" stop-color="#222"/>
    </radialGradient>
    <linearGradient id="cupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ff9a9e"/>
      <stop offset="100%" stop-color="#fad0c4"/>
    </linearGradient>
    <linearGradient id="handleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#a1c4fd"/>
      <stop offset="100%" stop-color="#c2e9fb"/>
    </linearGradient>
    <pattern id="spokePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0 0 L10 10 M10 0 L0 10" stroke="#888" stroke-width="0.5"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#f0f0f0" />

  <!-- Draw the unicycle wheel -->
  <circle cx="150" cy="220" r="50" fill="url(#wheelGradient)" />
  <!-- Add spokes using pattern -->
  <circle cx="150" cy="220" r="50" fill="none" stroke="url(#spokePattern)" stroke-width="2"/>

  <!-- Teacup body: using path with curves -->
  <path d="M130 180 Q150 160 170 180 L165 210 Q150 220 135 210 Z" fill="url(#cupGradient)" stroke="#d96c6c" stroke-width="2"/>
  
  <!-- Teacup handle -->
  <path d="M170 185 Q190 195 170 210" fill="none" stroke="url(#handleGradient)" stroke-width="6" stroke-linecap="round"/>

  <!-- Artistic steam from the teacup -->
  <g fill="none" stroke="#aaa" stroke-width="2" stroke-linecap="round">
    <path d="M140 155 C135 145, 145 135, 140 125"/>
    <path d="M150 150 C147 140, 153 130, 150 120" />
    <path d="M160 155 C158 145, 162 135, 160 125" />
  </g>
  
  <!-- Unicycle frame (imaginative) -->
  <line x1="150" y1="220" x2="140" y2="190" stroke="#444" stroke-width="4" stroke-linecap="round" />
  <line x1="140" y1="190" x2="130" y2="180" stroke="#444" stroke-width="4" stroke-linecap="round" />

  <!-- Artistic extra touches: abstract background shapes -->
  <ellipse cx="80" cy="40" rx="30" ry="15" fill="rgba(255,182,193,0.5)" />
  <ellipse cx="220" cy="60" rx="25" ry="12" fill="rgba(176,224,230,0.5)" />
  
  <!-- Decorative border -->
  <rect x="5" y="5" width="290" height="290" fill="none" stroke="#ccc" stroke-width="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's submission adheres to the prompt by depicting a teacup balancing on the wheel of a unicycle.

    The inclusion of steam adds a dynamic element, enhancing visual appeal.

    In contrast, Player 1's image does not clearly represent the concept as effectively or creatively.

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
14
Player 2
14
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
3
Player 2
2
Ellipses

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

Player 1
4
Player 2
2
Lines

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

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

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

Player 1
2
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
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
2
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
23
Player 2
17
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
3
Player 2
4
Use Elements

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

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