Back

SVG Drawing Match #824

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock shaped like a tree, with leaves as numbers, ticking with a sun and moon pendulum"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="treeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#2d5a39;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#1a3a25;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#4a9375;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#2d5a39;stop-opacity:1"/>
    </linearGradient>
    <radialGradient id="leafGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#8ab16f;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#6a9c5f;stop-opacity:1"/>
    </radialGradient>
  </defs>
  
  <rect x="120" y="150" width="60" height="200" rx="30" fill="#3a5045"/>
  <path d="M150 100 Q180 80 210 100" fill="#4a5547"/>
  <path d="M150 130 Q120 110 90 130" fill="#4a5547"/>
  
  <circle cx="150" cy="150" r="100" fill="url(#clockGradient)"/>
  
  <g transform="rotate(30 150 150)">
    <circle cx="150" cy="130" r="8" fill="url(#leafGradient)"/>
    <text x="150" y="135" font-size="10" fill="#ffd700" text-anchor="middle">12</text>
  </g>
  
  <g transform="rotate(60 150 150)">
    <circle cx="150" cy="130" r="8" fill="url(#leafGradient)"/>
    <text x="150" y="135" font-size="10" fill="#ffd700" text-anchor="middle">3</text>
  </g>
  
  <g transform="rotate(-60 150 150)">
    <circle cx="150" cy="130" r="8" fill="url(#leafGradient)"/>
    <text x="150" y="135" font-size="10" fill="#ffd700" text-anchor="middle">9</text>
  </g>
  
  <g transform="rotate(-30 150 150)">
    <circle cx="150" cy="130" r="8" fill="url(#leafGradient)"/>
    <text x="150" y="135" font-size="10" fill="#ffd700" text-anchor="middle">6</text>
  </g>
  
  <circle cx="150" cy="150" r="2" fill="#ffd700"/>
  
  <rect x="140" y="140" width="20" height="40" rx="10" fill="#ffd700"/>
  
  <g id="pendulum">
    <circle cx="150" cy="200" r="20" fill="#ffd700">
      <animateTransform attributeName="transform" type="rotate" from="0 150 200" to="30 150 200" dur="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="150" cy="220" r="15" fill="#c0c0c0">
      <animateTransform attributeName="transform" type="rotate" from="0 150 220" to="-30 150 220" dur="2s" repeatCount="indefinite" />
    </circle>
    <path d="M150 200 L150 240" stroke="#ffd700" stroke-width="3">
      <animateTransform attributeName="transform" type="rotate" from="0 150 200" to="30 150 200" dur="2s" repeatCount="indefinite" />
    </path>
  </g>
  
  <g transform="rotate(0 150 150)">
    <rect x="140" y="145" width="20" height="20" rx="10" fill="#ffd700"/>
  </g>
  
  <circle cx="150" cy="150" r="100" fill="none" stroke="#8ab16f" stroke-width="2"/>
  
  <g id="hourHand">
    <rect x="148" y="145" width="4" height="40" rx="2" fill="#4a9375"/>
    <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="12h" repeatCount="indefinite" />
  </g>
  
  <g id="minuteHand">
    <rect x="148" y="140" width="3" height="50" rx="1.5" fill="#8ab16f"/>
    <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="1h" repeatCount="indefinite" />
  </g>
  
  <g id="secondHand">
    <rect x="148" y="135" width="2" height="60" rx="1" fill="#ffd700"/>
    <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="1m" repeatCount="indefinite" />
  </g>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="treeGradient" cx="50%" cy="10%" r="80%">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
    <linearGradient id="sunGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </linearGradient>
    <linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#F0F8FF"/>
      <stop offset="100%" stop-color="#708090"/>
    </linearGradient>
    <pattern id="leafPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="20" height="20" fill="white" />
      <circle cx="10" cy="10" r="8" fill="url(#treeGradient)" />
    </pattern>
  </defs>
  <!-- Tree Clock Outline -->
  <circle cx="150" cy="150" r="100" fill="url(#treeGradient)" stroke="#654321" stroke-width="4"/>
  <!-- Branches to emulate tree branches -->
  <path d="M150,150 C130,100 170,100 150,40" fill="none" stroke="#654321" stroke-width="5"/>
  <path d="M150,150 C110,120 90,80 70,60" fill="none" stroke="#654321" stroke-width="4"/>
  <path d="M150,150 C190,120 210,80 230,60" fill="none" stroke="#654321" stroke-width="4"/>
  <!-- Leaves as Numbers -->
  <!-- 12 at top -->
  <text x="140" y="35" font-family="Verdana" font-size="14" fill="white" text-anchor="middle">12</text>
  <!-- 3 at right -->
  <text x="245" y="155" font-family="Verdana" font-size="14" fill="white" text-anchor="middle">3</text>
  <!-- 6 at bottom -->
  <text x="150" y="265" font-family="Verdana" font-size="14" fill="white" text-anchor="middle">6</text>
  <!-- 9 at left -->
  <text x="55" y="155" font-family="Verdana" font-size="14" fill="white" text-anchor="middle">9</text>
  <!-- Other leaves for minor hour markers -->
  <text x="200" y="65" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">1</text>
  <text x="235" y="95" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">2</text>
  <text x="235" y="205" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">4</text>
  <text x="215" y="245" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">5</text>
  <text x="85" y="245" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">7</text>
  <text x="65" y="205" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">8</text>
  <text x="65" y="95" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">10</text>
  <text x="85" y="65" font-family="Verdana" font-size="10" fill="white" text-anchor="middle">11</text>
  
  <!-- Clock Hands (Tree Trunk branches as hands) -->
  <!-- Hour Hand -->
  <line x1="150" y1="150" x2="150" y2="100" stroke="#654321" stroke-width="6" stroke-linecap="round" />
  <!-- Minute Hand -->
  <line x1="150" y1="150" x2="185" y2="150" stroke="#654321" stroke-width="4" stroke-linecap="round" />
  
  <!-- Sun and Moon Pendulum -->
  <g id="pendulum">
    <!-- Pendulum Rod -->
    <line x1="150" y1="150" x2="150" y2="220" stroke="#8B4513" stroke-width="3"/>
    <!-- Sun (left half) -->
    <circle cx="140" cy="240" r="12" fill="url(#sunGradient)" />
    <!-- Moon (right half, crescent shape) -->
    <circle cx="160" cy="240" r="12" fill="url(#moonGradient)" />
    <circle cx="165" cy="237" r="12" fill="white" opacity="0.7"/>
  </g>
  
  <!-- Additional decorative foliage leaves -->
  <g id="foliage">
    <ellipse cx="90" cy="90" rx="8" ry="12" fill="url(#leafPattern)" transform="rotate(-20 90 90)"/>
    <ellipse cx="210" cy="90" rx="8" ry="12" fill="url(#leafPattern)" transform="rotate(20 210 90)"/>
    <ellipse cx="75" cy="200" rx="8" ry="12" fill="url(#leafPattern)" transform="rotate(10 75 200)"/>
    <ellipse cx="225" cy="200" rx="8" ry="12" fill="url(#leafPattern)" transform="rotate(-10 225 200)"/>
  </g>
  
  <!-- Embellishments: Subtle Sun rays around the sun half of the pendulum -->
  <g id="sunRays" transform="translate(140,240)">
    <line x1="0" y1="0" x2="-15" y2="-15" stroke="#FFD700" stroke-width="2"/>
    <line x1="0" y1="0" x2="15" y2="-15" stroke="#FFD700" stroke-width="2"/>
    <line x1="0" y1="0" x2="-15" y2="15" stroke="#FFD700" stroke-width="2"/>
    <line x1="0" y1="0" x2="15" y2="15" stroke="#FFD700" stroke-width="2"/>
  </g>
  
  <!-- Embellishments: Small stars around the moon side -->
  <g id="moonStars" transform="translate(160,240)">
    <circle cx="-8" cy="-8" r="1.5" fill="#F0F8FF" />
    <circle cx="8" cy="-8" r="1.5" fill="#F0F8FF" />
    <circle cx="-8" cy="8" r="1.5" fill="#F0F8FF" />
    <circle cx="8" cy="8" r="1.5" fill="#F0F8FF" />
  </g>
  
  <!-- Clock Center -->
  <circle cx="150" cy="150" r="5" fill="#654321" />
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's design adheres more closely to the prompt by incorporating a tree-like structure with branches and numbers represented by leaves.

    The sun and moon pendulum is clearly depicted, enhancing the visual appeal and thematic coherence.

    In contrast, Player 1's submission lacks a clear tree shape and does not effectively integrate the sun and moon elements, resulting in a less creative and visually engaging design.

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

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

Player 1
6
Player 2
1
Circles

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

Player 1
9
Player 2
10
Ellipses

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

Player 1
Player 2
4
Lines

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

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

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

Player 1
9
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
9

Interactivity Metrics

Animations

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

Player 1
6
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
5
Player 2
6

Complexity Metrics

Path Commands

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

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