Back

SVG Drawing Match #1039

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A surreal tree with gears for leaves and clock hands for branches"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Trunk gradient -->
  <defs>
    <linearGradient id="trunkGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#964B00"/>
      <stop offset="1" stop-color="#786C3B"/>
    </linearGradient>
    <radialGradient id="gearGrad" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0" stop-color="#C48189"/>
      <stop offset="1" stop-color="#9B5B67"/>
    </radialGradient>
    <linearGradient id="clockGrad" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" stop-color="#85A9C5"/>
      <stop offset="1" stop-color="#6D8EA3"/>
    </linearGradient>
  </defs>

  <!-- Tree trunk -->
  <rect x="125" y="150" width="50" height="100" rx="10" fill="url(#trunkGrad)"/>

  <!-- Gear leaves -->
  <g transform="translate(175, 75)">
    <circle cx="0" cy="0" r="20" fill="url(#gearGrad)"/>
    <path d="M -10 -15 L 10 15 M -15 -10 L 15 10" stroke="#382B1F" stroke-width="4" fill="none"/>
    <path d="M -10 15 L 10 -15 M -15 10 L 15 -10" stroke="#382B1F" stroke-width="4" fill="none"/>
  </g>
  <g transform="translate(100, 50)">
    <circle cx="0" cy="0" r="15" fill="url(#gearGrad)"/>
    <path d="M -7.5 -11.25 L 7.5 11.25 M -11.25 -7.5 L 11.25 7.5" stroke="#382B1F" stroke-width="3" fill="none"/>
    <path d="M -7.5 11.25 L 7.5 -11.25 M -11.25 7.5 L 11.25 -7.5" stroke="#382B1F" stroke-width="3" fill="none"/>
  </g>
  <g transform="translate(220, 120)">
    <circle cx="0" cy="0" r="25" fill="url(#gearGrad)"/>
    <path d="M -12.5 -18.75 L 12.5 18.75 M -18.75 -12.5 L 18.75 12.5" stroke="#382B1F" stroke-width="5" fill="none"/>
    <path d="M -12.5 18.75 L 12.5 -18.75 M -18.75 12.5 L 18.75 -12.5" stroke="#382B1F" stroke-width="5" fill="none"/>
  </g>

  <!-- Clock branches -->
  <line x1="150" y1="150" x2="70" y2="50" stroke="url(#clockGrad)" stroke-width="10" stroke-linecap="round"/>
  <line x1="150" y1="150" x2="230" y2="250" stroke="url(#clockGrad)" stroke-width="10" stroke-linecap="round"/>
  <path d="M 70 50 L 70 70 L 50 70" stroke="url(#clockGrad)" stroke-width="5" fill="none"/>
  <path d="M 230 250 L 230 230 L 250 230" stroke="url(#clockGrad)" stroke-width="5" fill="none"/>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="trunkGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8B5A2B"/>
      <stop offset="100%" stop-color="#5D3A1A"/>
    </linearGradient>
    <linearGradient id="branchGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#555555"/>
      <stop offset="100%" stop-color="#222222"/>
    </linearGradient>
    <linearGradient id="gearGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </linearGradient>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="100%" stop-color="#CCCCCC"/>
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="2" stdDeviation="3" flood-color="#000000" flood-opacity="0.5"/>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#f0f8ff"/>

  <!-- Trunk -->
  <path d="M150,280 Q145,200 150,150 Q155,100 150,20" fill="url(#trunkGradient)" filter="url(#shadow)"/>

  <!-- Clock Hand Branches -->
  <g stroke="url(#branchGradient)" stroke-width="2">
    <!-- Branch 1 -->
    <line x1="150" y1="20" x2="120" y2="80" />
    <line x1="150" y1="20" x2="180" y2="80" />
    <!-- Branch 2 -->
    <line x1="150" y1="80" x2="110" y2="140" />
    <line x1="150" y1="80" x2="190" y2="140" />
    <!-- Branch 3 -->
    <line x1="150" y1="140" x2="100" y2="200" />
    <line x1="150" y1="140" x2="200" y2="200" />
  </g>

  <!-- Clock Hands -->
  <g stroke="url(#clockGradient)" stroke-width="1.5">
    <!-- From Branch 1 -->
    <line x1="120" y1="80" x2="110" y2="70" stroke-linecap="round"/>
    <line x1="120" y1="80" x2="130" y2="90" stroke-linecap="round"/>
    <line x1="180" y1="80" x2="170" y2="70" stroke-linecap="round"/>
    <line x1="180" y1="80" x2="190" y2="90" stroke-linecap="round"/>
    <!-- From Branch 2 -->
    <line x1="110" y1="140" x2="100" y2="130" stroke-linecap="round"/>
    <line x1="110" y1="140" x2="120" y2="150" stroke-linecap="round"/>
    <line x1="190" y1="140" x2="180" y2="130" stroke-linecap="round"/>
    <line x1="190" y1="140" x2="200" y2="150" stroke-linecap="round"/>
    <!-- From Branch 3 -->
    <line x1="100" y1="200" x2="90" y2="190" stroke-linecap="round"/>
    <line x1="100" y1="200" x2="110" y2="210" stroke-linecap="round"/>
    <line x1="200" y1="200" x2="190" y2="190" stroke-linecap="round"/>
    <line x1="200" y1="200" x2="210" y2="210" stroke-linecap="round"/>
  </g>

  <!-- Gears as Leaves -->
  <g fill="url(#gearGradient)" stroke="#B8860B" stroke-width="1">
    <!-- Gear 1 -->
    <circle cx="110" cy="70" r="8" />
    <path d="M110,62 L112,68 M114,65 L108,66 M106,65 L112,64 M110,58 L110,69" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 2 -->
    <circle cx="130" cy="90" r="8" />
    <path d="M130,82 L132,88 M134,85 L128,86 M126,85 L132,84 M130,78 L130,89" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 3 -->
    <circle cx="170" cy="70" r="8" />
    <path d="M170,62 L172,68 M174,65 L168,66 M166,65 L172,64 M170,58 L170,69" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 4 -->
    <circle cx="190" cy="90" r="8" />
    <path d="M190,82 L192,88 M194,85 L188,86 M186,85 L192,84 M190,78 L190,89" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 5 -->
    <circle cx="100" cy="130" r="8" />
    <path d="M100,122 L102,128 M104,125 L98,126 M96,125 L102,124 M100,118 L100,129" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 6 -->
    <circle cx="120" cy="150" r="8" />
    <path d="M120,142 L122,148 M124,145 L118,146 M116,145 L122,144 M120,138 L120,149" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 7 -->
    <circle cx="180" cy="130" r="8" />
    <path d="M180,122 L182,128 M184,125 L178,126 M176,125 L182,124 M180,118 L180,129" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 8 -->
    <circle cx="200" cy="150" r="8" />
    <path d="M200,142 L202,148 M204,145 L198,146 M196,145 L202,144 M200,138 L200,149" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 9 -->
    <circle cx="90" cy="190" r="8" />
    <path d="M90,182 L92,188 M94,185 L88,186 M86,185 L92,184 M90,178 L90,189" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 10 -->
    <circle cx="110" cy="210" r="8" />
    <path d="M110,202 L112,208 M114,205 L108,206 M106,205 L112,204 M110,198 L110,209" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 11 -->
    <circle cx="190" cy="190" r="8" />
    <path d="M190,182 L192,188 M194,185 L188,186 M186,185 L192,184 M190,178 L190,189" stroke="#B8860B" stroke-width="0.5"/>
    <!-- Gear 12 -->
    <circle cx="210" cy="210" r="8" />
    <path d="M210,202 L212,208 M214,205 L208,206 M206,205 L212,204 M210,198 L210,209" stroke="#B8860B" stroke-width="0.5"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 1

Judge's Analysis

    Player 1's submission creatively integrates gears as leaves and clock hands as branches, adhering closely to the surreal concept.

    The abstract representation and color contrast enhance the visual appeal, making it more intriguing.

    Player 2's image, while visually pleasing, lacks the mechanical elements specified in 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
14
Player 2
44
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
12
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
18
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
13
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
3
Player 2
4
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
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
10
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
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
30
Player 2
99
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
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