Back

SVG Drawing Match #1111

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal clock made of swirling autumn leaves"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#fefcea"/>
      <stop offset="100%" stop-color="#f1da36"/>
    </linearGradient>
    <!-- Autumn leaf pattern -->
    <pattern id="leafPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <path d="M10 0 C12 5, 12 15, 10 20 C8 15, 6 5, 10 0 Z" fill="url(#leafGradient)"/>
    </pattern>
    <linearGradient id="leafGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#d35400"/>
      <stop offset="100%" stop-color="#e67e22"/>
    </linearGradient>
    <!-- Clock gradient -->
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff"/>
      <stop offset="100%" stop-color="#f39c12"/>
    </radialGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>

  <!-- Surreal swirling ultimate clock -->
  <!-- Clock face made of swirling leaves -->
  <g id="clock">
    <!-- Base circle clock background -->
    <circle cx="150" cy="150" r="90" fill="url(#clockGradient)" stroke="#a67c00" stroke-width="3"/>
    
    <!-- Leaf swirls around for clock border -->
    <g id="leaves">
      <path d="M150,60 
               C170,65, 190,80, 210,100 
               C230,120, 240,140, 245,160 
               C240,180, 230,200, 210,220 
               C190,240, 170,255, 150,260" 
            fill="none" stroke="url(#leafGradient)" stroke-width="4" stroke-linecap="round"/>
      <path d="M150,60 
               C130,65, 110,80, 90,100 
               C70,120, 60,140, 55,160 
               C60,180, 70,200, 90,220 
               C110,240, 130,255, 150,260" 
            fill="none" stroke="url(#leafGradient)" stroke-width="4" stroke-linecap="round"/>
      <!-- Additional swirling leaves using pattern fill -->
      <circle cx="150" cy="150" r="110" fill="none" stroke="url(#leafGradient)" stroke-width="2" stroke-dasharray="5,5"/>
    </g>
    
    <!-- Clock hands (abstract shapes) -->
    <g id="hands">
      <!-- Hour hand -->
      <path d="M150,150 L150,90" stroke="#8e44ad" stroke-width="6" stroke-linecap="round" transform="rotate(20,150,150)"/>
      <!-- Minute hand -->
      <path d="M150,150 L150,70" stroke="#2980b9" stroke-width="4" stroke-linecap="round" transform="rotate(-40,150,150)"/>
      <!-- Center pivot -->
      <circle cx="150" cy="150" r="5" fill="#2c3e50"/>
    </g>
    
    <!-- Additional decorative leaves floating inside the clock -->
    <g id="innerLeaves" opacity="0.7">
      <ellipse cx="120" cy="130" rx="8" ry="16" fill="url(#leafGradient)" transform="rotate(-20,120,130)"/>
      <ellipse cx="180" cy="170" rx="10" ry="18" fill="url(#leafGradient)" transform="rotate(30,180,170)"/>
      <ellipse cx="160" cy="120" rx="6" ry="12" fill="url(#leafGradient)" transform="rotate(10,160,120)"/>
      <ellipse cx="140" cy="180" rx="7" ry="14" fill="url(#leafGradient)" transform="rotate(-30,140,180)"/>
    </g>
  </g>
  
  <!-- Surreal swirling motion effect around the clock -->
  <g id="swirlEffects">
    <path d="M50,150 
             C70,130, 90,170, 110,150
             S150,110, 190,150 
             S230,190, 250,150" fill="none" stroke="#c0392b" stroke-width="2" opacity="0.5" stroke-linecap="round"/>
    <path d="M50,180 
             C70,160, 90,200, 110,180
             S150,140, 190,180 
             S230,220, 250,180" fill="none" stroke="#27ae60" stroke-width="2" opacity="0.5" stroke-linecap="round"/>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="leafGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#FF8C00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8B4513;stop-opacity:1" />
    </radialGradient>
    <pattern id="leafPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M10 0 Q 15 5, 10 10 Q 5 15, 0 10 Q 5 5, 0 0 Q 5 -5, 10 0" fill="url(#leafGradient)" />
    </pattern>
    <filter id="shadow" x="-0.8" y="-0.8" width="2.6" height="2.6">
      <feOffset result="offOut" in="SourceAlpha" dx="3" dy="3" />
      <feGaussianBlur result="blurOut" in="offOut" stdDeviation="3" />
      <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
    </filter>
  </defs>
  <rect width="300" height="300" fill="#FFEBCD" />
  <g filter="url(#shadow)">
    <circle cx="150" cy="150" r="120" fill="none" stroke="url(#leafPattern)" stroke-width="20" />
    <path d="M150 150 L150 50" stroke="#8B0000" stroke-width="8" stroke-linecap="round" />
    <path d="M150 150 L220 180" stroke="#8B0000" stroke-width="6" stroke-linecap="round" />
    <circle cx="150" cy="150" r="10" fill="#8B0000" />
  </g>
  <g transform="rotate(0, 150, 150)">
    <path d="M150 50 Q 200 70, 250 90 Q 200 110, 150 130" fill="none" stroke="url(#leafPattern)" stroke-width="10" />
    <path d="M150 170 Q 100 190, 50 210 Q 100 230, 150 250" fill="none" stroke="url(#leafPattern)" stroke-width="10" />
  </g>
  <g transform="rotate(120, 150, 150)">
    <path d="M150 50 Q 200 70, 250 90 Q 200 110, 150 130" fill="none" stroke="url(#leafPattern)" stroke-width="10" />
    <path d="M150 170 Q 100 190, 50 210 Q 100 230, 150 250" fill="none" stroke="url(#leafPattern)" stroke-width="10" />
  </g>
  <g transform="rotate(240, 150, 150)">
    <path d="M150 50 Q 200 70, 250 90 Q 200 110, 150 130" fill="none" stroke="url(#leafPattern)" stroke-width="10" />
    <path d="M150 170 Q 100 190, 50 210 Q 100 230, 150 250" fill="none" stroke="url(#leafPattern)" stroke-width="10" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 2

Judge's Analysis

    Player 2's image captures the concept of a clock made of swirling autumn leaves more effectively.

    The arrangement of leaves forms a dynamic and surreal pattern that adheres well to the prompt.

    The shadowing adds depth, enhancing the technical quality and visual appeal.

    Player 1's design, while colorful and creative, lacks the clear representation of swirling leaves as part of the clock structure.

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
12
Rectangles

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

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

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

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

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
2

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
6
Player 2
3

Complexity Metrics

Path Commands

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

Player 1
26
Player 2
27
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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

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