Back

SVG Drawing Match #1691

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating clock with wings over a melting cityscape"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEFA; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4682B4; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF4500; stop-opacity:1" />
    </linearGradient>
    <pattern id="meltingCityPattern" patternUnits="userSpaceOnUse" width="30" height="30">
      <rect width="30" height="30" fill="#F0E68C" />
      <circle cx="15" cy="15" r="5" fill="#CD5C5C" />
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <g id="cityscape" transform="translate(0, 200) scale(1, 0.5)">
    <path d="M0 30 L20 5 L40 30 Z" fill="url(#meltingCityPattern)" />
    <path d="M50 30 L70 10 L90 30 Z" fill="url(#meltingCityPattern)" />
    <path d="M100 30 L120 15 L140 30 Z" fill="url(#meltingCityPattern)" />
    <path d="M150 30 L170 5 L190 30 Z" fill="url(#meltingCityPattern)" />
    <path d="M200 30 L220 12 L240 30 Z" fill="url(#meltingCityPattern)" />
    <path d="M250 30 L270 8 L290 30 Z" fill="url(#meltingCityPattern)" />
  </g>

  <g id="clock" transform="translate(150, 100)">
    <ellipse cx="0" cy="0" rx="40" ry="20" fill="white" stroke="#000" stroke-width="2" />
    <circle cx="0" cy="0" r="2" fill="black" />
    <line x1="0" y1="0" x2="0" y2="-15" stroke="black" stroke-width="2" />
    <line x1="0" y1="0" x2="10" y2="5" stroke="black" stroke-width="2" />
    <text x="-10" y="5" font-family="Verdana" font-size="8" fill="black">12</text>
    <text x="-10" y="-18" font-family="Verdana" font-size="8" fill="black">6</text>
    <text x="-25" y="5" font-family="Verdana" font-size="8" fill="black">9</text>
    <text x="18" y="5" font-family="Verdana" font-size="8" fill="black">3</text>
  </g>

  <g id="wings" transform="translate(130, 70)">
    <path d="M0 0 C-30 -20, -60 -20, -70 0 C-60 20, -30 20, 0 0 Z" fill="url(#wingGradient)" />
    <path d="M0 0 C30 -20, 60 -20, 70 0 C60 20, 30 20, 0 0 Z" fill="url(#wingGradient)" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Sky Gradient -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1e3c72"/>
      <stop offset="100%" stop-color="#2a5298"/>
    </linearGradient>
    <!-- City Gradient -->
    <linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#434343"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <!-- Clock Face Gradient -->
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </radialGradient>
    <!-- Wing Gradient -->
    <linearGradient id="wingGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#87CEFA" stop-opacity="0.4"/>
    </linearGradient>
    <!-- Drip Gradient -->
    <radialGradient id="dripGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#555555"/>
      <stop offset="100%" stop-color="#222222"/>
    </radialGradient>
  </defs>
  
  <!-- Background Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Melting Cityscape -->
  <g id="cityscape">
    <!-- Building 1 -->
    <rect x="50" y="180" width="30" height="70" fill="url(#cityGradient)" />
    <ellipse cx="65" cy="250" rx="15" ry="5" fill="url(#dripGradient)" />
    <ellipse cx="65" cy="260" rx="10" ry="3" fill="url(#dripGradient)" opacity="0.7"/>
    <!-- Building 2 -->
    <rect x="100" y="160" width="25" height="90" fill="url(#cityGradient)" />
    <ellipse cx="112.5" cy="250" rx="12.5" ry="4" fill="url(#dripGradient)" />
    <ellipse cx="112.5" cy="260" rx="7.5" ry="2" fill="url(#dripGradient)" opacity="0.7"/>
    <!-- Building 3 -->
    <rect x="140" y="170" width="20" height="80" fill="url(#cityGradient)" />
    <ellipse cx="150" cy="240" rx="10" ry="3" fill="url(#dripGradient)" />
    <ellipse cx="150" cy="250" rx="5" ry="1.5" fill="url(#dripGradient)" opacity="0.7"/>
    <!-- Building 4 -->
    <rect x="180" y="150" width="15" height="100" fill="url(#cityGradient)" />
    <ellipse cx="187.5" cy="250" rx="7.5" ry="2" fill="url(#dripGradient)" />
    <ellipse cx="187.5" cy="260" rx="3.75" ry="1.0" fill="url(#dripGradient)" opacity="0.7"/>
    <!-- Building 5 -->
    <rect x="210" y="190" width="25" height="60" fill="url(#cityGradient)" />
    <ellipse cx="222.5" cy="250" rx="12.5" ry="4" fill="url(#dripGradient)" />
    <ellipse cx="222.5" cy="260" rx="6.25" ry="2" fill="url(#dripGradient)" opacity="0.7"/>
  </g>
  
  <!-- Floating Clock with Wings -->
  <g id="floatingClock">
    <!-- Wings -->
    <path d="M60,150 C40,130 40,170 60,160 C50,155 55,145 60,150" fill="url(#wingGradient)" opacity="0.7"/>
    <path d="M240,150 C260,130 260,170 240,160 C250,155 245,145 240,150" fill="url(#wingGradient)" opacity="0.7"/>
    <!-- Clock Face -->
    <circle cx="150" cy="130" r="40" fill="url(#clockGradient)" stroke="#FFD700" stroke-width="2"/>
    <!-- Clock Center -->
    <circle cx="150" cy="130" r="5" fill="#FFFFFF"/>
    <!-- Hour Hand -->
    <line x1="150" y1="130" x2="150" y2="110" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"/>
    <!-- Minute Hand -->
    <line x1="150" y1="130" x2="170" y2="130" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round"/>
    <!-- Clock Numbers -->
    <text x="150" y="115" text-anchor="middle" font-size="8" fill="#FFFFFF">12</text>
    <text x="185" y="135" text-anchor="middle" font-size="8" fill="#FFFFFF">3</text>
    <text x="150" y="155" text-anchor="middle" font-size="8" fill="#FFFFFF">6</text>
    <text x="115" y="135" text-anchor="middle" font-size="8" fill="#FFFFFF">9</text>
  </g>
  
  <!-- Shadows and Highlights -->
  <defs>
    <filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
      <feOffset result="offOut" in="SourceAlpha" dx="5" dy="5" />
      <feGaussianBlur result="blurOut" in="offOut" stdDeviation="5" />
      <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
    </filter>
  </defs>
  <g filter="url(#shadow)">
    <!-- Apply shadow to clock -->
    <circle cx="150" cy="130" r="40" fill="none" />
  </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 better captures the surreal concept of a 'floating clock with wings over a melting cityscape' with a more cohesive and creative design.

    The clock is prominent and central, with subtle wing-like elements, and the cityscape is depicted with a melting effect, enhancing the overall visual appeal and adherence to the prompt.

    Player 1's image, while colorful, lacks the melting aspect of the cityscape, making it less effective in conveying the theme.

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

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

Player 1
2
Player 2
6
Circles

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

Player 1
2
Player 2
3
Ellipses

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

Player 1
1
Player 2
10
Lines

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

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

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

Player 1
3
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
10

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

Complexity Metrics

Path Commands

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

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

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