Back

SVG Drawing Match #2470

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock face melting into a pool of stars."

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="star-glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFD700" stop-opacity="1"/>
      <stop offset="100%" stop-color="#FFD700" stop-opacity="0"/>
    </radialGradient>
    <linearGradient id="melt-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4B0082"/>
      <stop offset="50%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#9370DB"/>
    </linearGradient>
  </defs>
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="60" fill="url(#melt-gradient)" stroke="#DA70D6" stroke-width="3">
      <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="60s" repeatCount="indefinite"/>
    </circle>
    <path d="M 0,-50 L 10,-10 L 50,0 L 10,10 L 0,50 L -10,10 L -50,0 L -10,-10 Z" fill="#FFFFFF" stroke="#DA70D6" stroke-width="2" transform="rotate(30)">
        <animateTransform attributeName="transform" type="rotate" from="30 0 0" to="390 0 0" dur="10s" repeatCount="indefinite"/>
    </path>
    <path d="M 0,-50 L 10,-10 L 50,0 L 10,10 L 0,50 L -10,10 L -50,0 L -10,-10 Z" fill="#FFFFFF" stroke="#DA70D6" stroke-width="2" transform="rotate(150)">
       <animateTransform attributeName="transform" type="rotate" from="150 0 0" to="510 0 0" dur="8s" repeatCount="indefinite"/>
    </path>    
  </g>
  <g transform="translate(150,200)">
    <circle cx="-40" cy="-20" r="5" fill="url(#star-glow)" filter="blur(2)">
      <animate attributeName="r" values="3;8;3" dur="5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="20" cy="-35" r="7" fill="url(#star-glow)" filter="blur(3)">
      <animate attributeName="r" values="5;10;5" dur="7s" repeatCount="indefinite"/>
    </circle>
    <circle cx="50" cy="-10" r="4" fill="url(#star-glow)" filter="blur(2)">
      <animate attributeName="r" values="2;6;2" dur="3s" repeatCount="indefinite"/>
    </circle>
    <ellipse cx="-20" cy="10" rx="6" ry="3" fill="url(#star-glow)" filter="blur(1)">
        <animate attributeName="rx" values="4;8;4" dur="6s" repeatCount="indefinite"/>
    </ellipse>
    <animateTransform attributeName="transform" type="translate" from="0 0" to="0 30" dur="15s" repeatCount="indefinite"/>
  </g>
    <path d="M 70 180 C 90 220, 120 250, 150 260 C 180 270, 210 240, 230 200 C 200 220, 180 210, 160 230 C 130 250, 100 210, 80 190 C 70 180, 70 180, 70 180" fill="url(#melt-gradient)" opacity="0.7" filter="blur(5)">
            <animateTransform attributeName="transform" type="translate" from="0 0" to="0 30" dur="12s" repeatCount="indefinite"/>
    </path>
</svg>
SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="clockGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fffbe6"/>
      <stop offset="70%" stop-color="#ffd27f"/>
      <stop offset="100%" stop-color="#ff9f32"/>
    </radialGradient>
    <linearGradient id="meltGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff9f32" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#663300" stop-opacity="0.8"/>
    </linearGradient>
    <radialGradient id="starPool" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#001d4a"/>
      <stop offset="100%" stop-color="#000814"/>
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1.5" fill="#fdfd96"/>
      <circle cx="15" cy="12" r="1" fill="#fff"/>
      <circle cx="10" cy="17" r="1.2" fill="#ffec99"/>
    </pattern>
    <filter id="meltBlur" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1.2"/>
    </filter>
  </defs>

  <!-- Pool of stars -->
  <rect x="0" y="180" width="300" height="120" fill="url(#starPool)"/>
  <rect x="0" y="180" width="300" height="120" fill="url(#starPattern)" opacity="0.6"/>

  <!-- Melting drips -->
  <path d="M90 120 Q70 180 85 240 Q90 260 110 250 Q115 230 100 200 Q105 180 120 220 Q130 260 150 230 Q160 200 140 180 Q160 150 130 130 Q140 110 120 100 Q100 90 90 120Z"
        fill="url(#meltGrad)" filter="url(#meltBlur)" />

  <!-- Clock face -->
  <circle cx="120" cy="100" r="80" fill="url(#clockGrad)" stroke="#333" stroke-width="3" />
  <!-- Clock rim highlights -->
  <circle cx="120" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="6" />

  <!-- Hour marks -->
  <g stroke="#333" stroke-width="2">
    <line x1="120" y1="20" x2="120" y2="30"/>
    <line x1="120" y1="170" x2="120" y2="180"/>
    <line x1="40" y1="100" x2="50" y2="100"/>
    <line x1="190" y1="100" x2="200" y2="100"/>
    <line x1="60" y1="60" x2="68" y2="68"/>
    <line x1="172" y1="132" x2="180" y2="140"/>
    <line x1="60" y1="140" x2="68" y2="132"/>
    <line x1="172" y1="68" x2="180" y2="60"/>
  </g>

  <!-- Clock hands -->
  <line x1="120" y1="100" x2="120" y2="50" stroke="#333" stroke-width="4" stroke-linecap="round"/>
  <line x1="120" y1="100" x2="165" y2="105" stroke="#333" stroke-width="3" stroke-linecap="round"/>

  <!-- Center pivot -->
  <circle cx="120" cy="100" r="5" fill="#333"/>

  <!-- Stars rising around clock -->
  <g fill="none" stroke="#ffec99" stroke-width="1.5">
    <polygon points="200,40 202,46 208,46 203,50 205,56 200,52 195,56 197,50 192,46 198,46" fill="#fff"/>
    <polygon points="240,80 242,84 246,84 243,88 244,92 240,90 236,92 237,88 235,84 239,84" fill="#fdfd96"/>
    <polygon points="180,20 181,23 184,23 182,25 183,28 180,27 177,28 178,25 176,23 179,23" fill="#fff"/>
    <polygon points="260,30 261,33 264,33 262,35 263,38 260,36 257,38 258,35 256,33 259,33" fill="#ffec99"/>
    <polygon points="220,60 221,63 224,63 222,65 223,68 220,67 217,68 218,65 216,63 219,63" fill="#fff"/>
  </g>

  <!-- Glow around melting -->
  <ellipse cx="120" cy="240" rx="80" ry="20" fill="rgba(255,159,50,0.3)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini low (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission closely aligns with the prompt, depicting a clock face melting into a pool of stars with clear visual elements and a cohesive design.

    The melting effect is evident, and the stars are well-integrated into the composition.

    Player 1's submission, while creative, does not strongly convey the melting clock concept or the integration with a pool of stars, making it less effective in fulfilling 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
8
Player 2
25
Rectangles

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

Player 1
Player 2
2
Circles

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

Player 1
4
Player 2
6
Ellipses

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

Player 1
1
Player 2
1
Lines

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

Player 1
Player 2
10
Polygons

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

Player 1
Player 2
5
Paths

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

Player 1
3
Player 2
1
Groups

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
12

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
9
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
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
24
Player 2
11
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
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