Back

SVG Drawing Match #2248

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A single tree growing metallic gears instead of leaves."

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="trunkGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#8B4513"/>
      <stop offset="50%" style="stop-color:#A0522D"/>
      <stop offset="100%" style="stop-color:#8B4513"/>
    </linearGradient>
    <radialGradient id="metalGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#E8E8E8"/>
      <stop offset="70%" style="stop-color:#A0A0A0"/>
      <stop offset="100%" style="stop-color:#707070"/>
    </radialGradient>
  </defs>
  
  <!-- Ground -->
  <path d="M50,250 Q150,270 250,250" fill="none" stroke="#553311" stroke-width="4"/>
  
  <!-- Tree Trunk -->
  <path d="M150,250 C130,200 140,150 150,100 C160,150 170,200 150,250" fill="url(#trunkGradient)"/>
  
  <!-- Branches -->
  <path d="M150,100 L120,130" stroke="#8B4513" stroke-width="3" fill="none"/>
  <path d="M150,100 L180,130" stroke="#8B4513" stroke-width="3" fill="none"/>
  <path d="M150,130 L110,160" stroke="#8B4513" stroke-width="3" fill="none"/>
  <path d="M150,130 L190,160" stroke="#8B4513" stroke-width="3" fill="none"/>
  
  <!-- Gears -->
  <g class="gear" transform="translate(120,130)">
    <circle r="15" fill="url(#metalGradient)"/>
    <path d="M0,-15 L2,-18 L-2,-18 Z M15,0 L18,2 L18,-2 Z M0,15 L-2,18 L2,18 Z M-15,0 L-18,-2 L-18,2 Z" fill="#909090"/>
    <circle r="5" fill="#606060"/>
  </g>
  
  <g class="gear" transform="translate(180,130)">
    <circle r="12" fill="url(#metalGradient)"/>
    <path d="M0,-12 L2,-15 L-2,-15 Z M12,0 L15,2 L15,-2 Z M0,12 L-2,15 L2,15 Z M-12,0 L-15,-2 L-15,2 Z" fill="#909090"/>
    <circle r="4" fill="#606060"/>
  </g>
  
  <g class="gear" transform="translate(110,160)">
    <circle r="18" fill="url(#metalGradient)"/>
    <path d="M0,-18 L2,-21 L-2,-21 Z M18,0 L21,2 L21,-2 Z M0,18 L-2,21 L2,21 Z M-18,0 L-21,-2 L-21,2 Z" fill="#909090"/>
    <circle r="6" fill="#606060"/>
  </g>
  
  <g class="gear" transform="translate(190,160)">
    <circle r="14" fill="url(#metalGradient)"/>
    <path d="M0,-14 L2,-17 L-2,-17 Z M14,0 L17,2 L17,-2 Z M0,14 L-2,17 L2,17 Z M-14,0 L-17,-2 L-17,2 Z" fill="#909090"/>
    <circle r="5" fill="#606060"/>
  </g>
  
  <g class="gear" transform="translate(150,100)">
    <circle r="20" fill="url(#metalGradient)"/>
    <path d="M0,-20 L2,-23 L-2,-23 Z M20,0 L23,2 L23,-2 Z M0,20 L-2,23 L2,23 Z M-20,0 L-23,-2 L-23,2 Z" fill="#909090"/>
    <circle r="7" fill="#606060"/>
  </g>
  
  <!-- Decorative elements -->
  <circle cx="150" cy="250" r="20" fill="#553311"/>
  <path d="M140,250 Q150,240 160,250" fill="none" stroke="#442200" stroke-width="2"/>
</svg>
SVG by o4-mini high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a0d8ef"/>
      <stop offset="100%" stop-color="#f0f9ff"/>
    </linearGradient>
    <radialGradient id="groundGrad" cx="50%" cy="100%" r="60%">
      <stop offset="0%" stop-color="#6b8e23"/>
      <stop offset="100%" stop-color="#3f5e0b"/>
    </radialGradient>
    <linearGradient id="trunkGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#8b5a2b"/>
      <stop offset="100%" stop-color="#5c3a21"/>
    </linearGradient>
    <radialGradient id="metalGrad" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#f0f0f0"/>
      <stop offset="40%" stop-color="#c0c0c0"/>
      <stop offset="70%" stop-color="#888"/>
      <stop offset="100%" stop-color="#666"/>
    </radialGradient>
    <g id="gearShape">
      <circle cx="0" cy="0" r="10" fill="url(#metalGrad)" stroke="#666" stroke-width="1"/>
      <circle cx="0" cy="0" r="4" fill="#ccc"/>
      <g fill="url(#metalGrad)" stroke="#666" stroke-width="0.5">
        <rect x="-1" y="-15" width="2" height="6"/>
        <rect x="-1" y="9" width="2" height="6"/>
        <rect x="-15" y="-1" width="6" height="2"/>
        <rect x="9" y="-1" width="6" height="2"/>
        <rect x="-5" y="-14" width="2" height="4" transform="rotate(45)"/>
        <rect x="-14" y="-5" width="2" height="4" transform="rotate(-45)"/>
        <rect x="11" y="-5" width="2" height="4" transform="rotate(45)"/>
        <rect x="-5" y="11" width="2" height="4" transform="rotate(135)"/>
      </g>
    </g>
  </defs>
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <ellipse cx="150" cy="320" rx="220" ry="80" fill="url(#groundGrad)"/>
  <path d="M150 300 C150 260 142 230 145 180" stroke="url(#trunkGrad)" stroke-width="16" fill="none" stroke-linecap="round"/>
  <path d="M145 180 C140 170 130 160 120 140" stroke="url(#trunkGrad)" stroke-width="12" fill="none" stroke-linecap="round"/>
  <path d="M145 180 C150 170 160 160 170 140" stroke="url(#trunkGrad)" stroke-width="12" fill="none" stroke-linecap="round"/>
  <path d="M150 260 C155 250 165 240 175 230" stroke="url(#trunkGrad)" stroke-width="12" fill="none" stroke-linecap="round"/>
  <path d="M150 260 C145 250 135 240 125 230" stroke="url(#trunkGrad)" stroke-width="12" fill="none" stroke-linecap="round"/>
  <path d="M120 140 C115 130 110 120 100 110" stroke="url(#trunkGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M170 140 C175 130 180 120 190 110" stroke="url(#trunkGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M175 230 C180 220 185 210 190 200" stroke="url(#trunkGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M125 230 C120 220 115 210 110 200" stroke="url(#trunkGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <use href="#gearShape" transform="translate(100 110) rotate(-15) scale(1.2)"/>
  <use href="#gearShape" transform="translate(190 110) rotate(25) scale(1)"/>
  <use href="#gearShape" transform="translate(120 140) rotate(5) scale(1)"/>
  <use href="#gearShape" transform="translate(170 140) rotate(45) scale(0.9)"/>
  <use href="#gearShape" transform="translate(110 200) rotate(180) scale(1.1)"/>
  <use href="#gearShape" transform="translate(175 200) rotate(350) scale(1)"/>
  <use href="#gearShape" transform="translate(125 230) rotate(135) scale(1)"/>
  <use href="#gearShape" transform="translate(175 230) rotate(315) scale(0.8)"/>
  <use href="#gearShape" transform="translate(145 180) rotate(0) scale(1.4)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini high (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission is more visually appealing, with a detailed background and more realistic integration of metallic gears into the tree design.

    The composition adheres better to the prompt, with a naturalistic tree structure and gears that feel like an organic part of the tree.

    Player 1's submission, while creative, lacks the same level of detail and visual coherence.

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
23
Player 2
21
Rectangles

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

Player 1
Player 2
9
Circles

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

Player 1
11
Player 2
2
Ellipses

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

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

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

Player 1
5
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
11

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
5
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
95
Player 2
18
Max Group Nesting

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

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

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