Back

SVG Drawing Match #1846

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Ballerina balancing on a tightrope above a cityscape during a vibrant sunset"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sunset" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="50%" stop-color="#ffd93d"/>
      <stop offset="100%" stop-color="#6c567b"/>
    </linearGradient>
    <pattern id="windows" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="4" height="4" fill="#ffd700" opacity="0.6"/>
    </pattern>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#sunset)"/>
  
  <!-- Buildings -->
  <g transform="translate(0,150)">
    <path d="M0,150 L0,0 L50,20 L70,-30 L90,10 L120,-50 L150,30 L180,-20 L210,0 L240,-40 L270,10 L300,-10 L300,150 Z" 
          fill="#2c3e50" opacity="0.8"/>
    <path d="M0,150 L0,50 L60,60 L100,20 L140,40 L180,0 L220,30 L260,10 L300,40 L300,150 Z" 
          fill="#34495e"/>
  </g>
  
  <!-- Building windows -->
  <g opacity="0.6">
    <rect x="0" y="150" width="300" height="150" fill="url(#windows)"/>
  </g>
  
  <!-- Tightrope -->
  <line x1="20" y1="100" x2="280" y2="80" stroke="#d3d3d3" stroke-width="1"/>
  
  <!-- Ballerina -->
  <g transform="translate(150,70)">
    <path d="M0,0 C-5,-10 -15,-8 -10,0 C-5,8 5,8 10,0 C15,-8 5,-10 0,0" 
          fill="#ff69b4" stroke="#000" stroke-width="0.5"/>
    <line x1="-10" y1="0" x2="-20" y2="15" stroke="#ff69b4" stroke-width="2"/>
    <line x1="10" y1="0" x2="20" y2="-15" stroke="#ff69b4" stroke-width="2"/>
    <circle cx="0" cy="-12" r="5" fill="#ffd700"/>
  </g>
  
  <!-- Stars -->
  <g fill="#fff" opacity="0.8">
    <circle cx="50" cy="30" r="1"/>
    <circle cx="100" cy="40" r="1.5"/>
    <circle cx="200" cy="20" r="1"/>
    <circle cx="250" cy="50" r="1.2"/>
    <circle cx="280" cy="30" r="1"/>
  </g>
  
  <!-- Moon -->
  <path d="M260,40 A20,20 0 0 1 240,60 A15,15 0 0 0 260,40" 
        fill="#fff" opacity="0.8"/>
  
  <!-- Clouds -->
  <g fill="#ff8c8c" opacity="0.4">
    <path d="M50,70 Q65,60 80,70 Q95,60 110,70 Q95,80 80,70 Q65,80 50,70"/>
    <path d="M200,50 Q215,40 230,50 Q245,40 260,50 Q245,60 230,50 Q215,60 200,50"/>
  </g>
</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="sunsetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff7e5f;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#feb47b;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#434343;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="ballerinaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffe0e0;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff4d4d;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#sunsetGradient)" />
  <g>
    <path d="M50 250 L80 230 L110 250 L140 210 L170 250 L200 220 L230 250 L260 230 L290 250 L0 250 Z" fill="url(#buildingGradient)" />
    <polygon points="25,250 0,250 0,300 25,300" fill="#ccc" />
    <polygon points="30,250 35,250 35,300 30,300" fill="#ccc" />
    <polygon points="160,220 170,220 170,300 160,300" fill="#ccc" />
    <polygon points="180,230 190,230 190,300 180,300" fill="#ccc" />
  </g>
  <path d="M150 120 L150 170" stroke="#654321" stroke-width="4" />
  <g transform="translate(150,100)">
    <ellipse cx="0" cy="0" rx="10" ry="15" fill="url(#ballerinaGradient)" />
    <line x1="-10" y1="15" x2="10" y2="15" stroke="#ff4d4d" stroke-width="2" />
    <line x1="0" y1="0" x2="-15" y2="30" stroke="#ffe0e0" stroke-width="4" />
    <line x1="0" y1="0" x2="15" y2="30" stroke="#ffe0e0" stroke-width="4" />
    <line x1="0" y1="0" x2="0" y2="45" stroke="#fff" stroke-width="2" stroke-dasharray="5,5" />
  </g>
  <circle cx="250" cy="50" r="20" fill="#ffb300" />
  <circle cx="100" cy="80" r="15" fill="#ffb300" />
  <circle cx="50" cy="40" r="25" fill="#ffb300" />
  <text x="150" y="280" font-family="Arial" font-size="20" fill="#fff" text-anchor="middle">Ballet Above the City</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image more effectively captures the concept of a ballerina balancing on a tightrope with a clear depiction above a cityscape.

    The vibrant sunset colors and the inclusion of a moon add to the visual appeal and atmospheric quality.

    Player 2's submission, although creative, lacks clarity in representing the ballerina and the tightrope, making it less aligned with the prompt.

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
18
Player 2
15
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
6
Player 2
3
Ellipses

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

Player 1
Player 2
1
Lines

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

Player 1
3
Player 2
4
Polygons

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

Player 1
Player 2
4
Paths

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

Player 1
6
Player 2
2
Groups

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

Player 1
5
Player 2
2

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
6

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
1

Complexity Metrics

Path Commands

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

Player 1
42
Player 2
13
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
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