Back

SVG Drawing Match #222

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock with flower petals instead of numbers, each showing a different time"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with subtle gradient -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Clock face with flower petals -->
  <g transform="translate(150 150)">
    <!-- Center circle with gradient -->
    <circle r="120" fill="url(#centerGradient)" stroke="#333" stroke-width="2"/>
    
    <!-- Flower petals (hours) -->
    <g id="petal1" transform="rotate(0)">
      <path d="M 0 0 Q 20 -40 40 0 Q 20 -20 0 0 L 40 20 L 20 40 L 0 20 Z" fill="url(#petal1Gradient)"/>
    </g>
    <g id="petal2" transform="rotate(30)">
      <path d="M 0 0 Q 20 -40 40 0 Q 20 -20 0 0 L 40 20 L 20 40 L 0 20 Z" fill="url(#petal2Gradient)"/>
    </g>
    <!-- Repeat similar groups for other petals with different rotations -->
    
    <!-- Hour hand -->
    <line x1="0" y1="0" x2="0" y2="-80" stroke="#fff" stroke-width="4"/>
    
    <!-- Minute hand -->
    <line x1="0" y1="0" x2="120" y2="0" stroke="#fffd00" stroke-width="2"/>
    
    <!-- Center dot -->
    <circle r="8" fill="#fffd00"/>
  </g>

  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0" stop-color="#1a1a1a"/>
      <stop offset="1" stop-color="#4a4a4a"/>
    </linearGradient>
    
    <linearGradient id="centerGradient" x1="0" y1="0" x2="100" y2="100">
      <stop offset="0" stop-color="#ffd700"/>
      <stop offset="1" stop-color="#ffab00"/>
    </linearGradient>
    
    <linearGradient id="petal1Gradient" x1="0" y1="0" x2="40" y2="40">
      <stop offset="0" stop-color="#ff99cc"/>
      <stop offset="1" stop-color="#ff66b3"/>
    </linearGradient>
    
    <linearGradient id="petal2Gradient" x1="0" y1="0" x2="40" y2="40">
      <stop offset="0" stop-color="#ffcc99"/>
      <stop offset="1" stop-color="#ffe066"/>
    </linearGradient>
    
    <!-- Add more petal gradients with different colors -->
    
    <!-- Shadow effect -->
    <filter id="shadow">
      <feGaussianBlur stdDeviation="4" result="shadow"/>
      <feMerge>
        <feMergeNode in="shadow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="petalGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff7f50; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff1493; stop-opacity:1" />
    </radialGradient>
    <filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur" />
      <feOffset dy="1" in="blur" result="offsetblur" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="offsetblur" />
      </feMerge>
    </filter>
  </defs>
  <circle cx="150" cy="150" r="120" fill="#ffffff" stroke="#dddddd" stroke-width="4" />
  <g filter="url(#shadow)">
    <circle cx="150" cy="150" r="110" fill="none" stroke="#ff69b4" stroke-width="8" />
  </g>
  <g>
    <g transform="translate(150, 150)">
      <g transform="rotate(0)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">1:00</text>
      </g>
      <g transform="rotate(30)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">2:00</text>
      </g>
      <g transform="rotate(60)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">3:00</text>
      </g>
      <g transform="rotate(90)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">4:00</text>
      </g>
      <g transform="rotate(120)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">5:00</text>
      </g>
      <g transform="rotate(150)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">6:00</text>
      </g>
      <g transform="rotate(180)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">7:00</text>
      </g>
      <g transform="rotate(210)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">8:00</text>
      </g>
      <g transform="rotate(240)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">9:00</text>
      </g>
      <g transform="rotate(270)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">10:00</text>
      </g>
      <g transform="rotate(300)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">11:00</text>
      </g>
      <g transform="rotate(330)">
        <path d="M0,-90 Q15,-75 0,-60 Q-15,-75 0,-90" fill="url(#petalGradient)" />
        <text x="0" y="-50" font-family="Arial" font-size="14" fill="#fff" text-anchor="middle">12:00</text>
      </g>
    </g>
  </g>
  <circle cx="150" cy="150" r="5" fill="#ff69b4" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's submission effectively adheres to the prompt by incorporating flower petals in place of numbers around the clock, creating a visually appealing and creative design.

    The technical quality and compositional strength are superior, with a clear and balanced arrangement.

    Player 1's design, while creative, lacks the full representation of the concept, missing the idea of different times for each petal position.

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

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

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

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

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

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

Player 1
3
Player 2
15

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
1
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
4

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
13

Complexity Metrics

Path Commands

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

Player 1
14
Player 2
36
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
2
Defs Elements

The number of elements defined within the defs element in the SVG.

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

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