Back

SVG Drawing Match #1202

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dandelion made of clock gears, in a minimalist steampunk style"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="g1" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="objectBoundingBox">
      <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="g2" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="objectBoundingBox">
      <stop offset="0%" style="stop-color:#2F4F4F;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4A708B;stop-opacity:1" />
    </linearGradient>
    <pattern id="p1" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="8" fill="#4A708B" opacity="0.2"/>
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#g2)"/>
  
  <!-- Main gear -->
  <g transform="translate(150,150)">
    <circle r="80" fill="url(#g1)" stroke="#8B4513" stroke-width="4"/>
    <path d="M0 0 L80 0 L0 80 L-80 0 L0 -80" transform="rotate(45)" fill="#8B4513"/>
  </g>
  
  <!-- Floating gears (seeds) -->
  <g transform="translate(150,150)" opacity="0.8">
    <g transform="rotate(30)">
      <circle r="10" fill="url(#g1)" stroke="#8B4513" stroke-width="2"/>
      <path d="M0 0 L30 0" stroke="#4A708B" stroke-width="1"/>
    </g>
    <g transform="rotate(-20)" transform="translate(50,0)">
      <circle r="8" fill="url(#g1)" stroke="#8B4513" stroke-width="2"/>
      <path d="M0 0 L25 0" stroke="#4A708B" stroke-width="1"/>
    </g>
    <g transform="rotate(60)" transform="translate(-40,0)">
      <circle r="12" fill="url(#g1)" stroke="#8B4513" stroke-width="2"/>
      <path d="M0 0 L35 0" stroke="#4A708B" stroke-width="1"/>
    </g>
  </g>
  
  <!-- Stem -->
  <path d="M150,220 C150,180 140,160 130,140 L130,100 L170,100 L170,140 C160,160 150,180 150,220" fill="none" stroke="#8B4513" stroke-width="4"/>
  
  <!-- Background gears -->
  <rect width="300" height="300" fill="url(#p1)"/>
  
  <!-- Additional decorative elements -->
  <g transform="translate(150,150)" opacity="0.3">
    <circle r="120" fill="none" stroke="#4A708B" stroke-width="2"/>
    <circle r="100" fill="none" stroke="#4A708B" stroke-width="2"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300 300">
  <defs>
    <!-- Gradient definitions -->
    <linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#f8f3e7" />
      <stop offset="100%" stop-color="#e6d7c3" />
    </linearGradient>
    
    <linearGradient id="brassGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#d6bc75" />
      <stop offset="100%" stop-color="#b79d61" />
    </linearGradient>
    
    <linearGradient id="copperGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#d3894b" />
      <stop offset="100%" stop-color="#9c6536" />
    </linearGradient>
    
    <linearGradient id="stemGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#8b6b4c" />
      <stop offset="50%" stop-color="#a08066" />
      <stop offset="100%" stop-color="#8b6b4c" />
    </linearGradient>
    
    <!-- Small gear template -->
    <g id="smallGear">
      <circle r="5" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M0,-7 L1.5,-6 L1.5,-2 L0,-1 L-1.5,-2 L-1.5,-6 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <path d="M0,7 L1.5,6 L1.5,2 L0,1 L-1.5,2 L-1.5,6 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <path d="M7,0 L6,1.5 L2,1.5 L1,0 L2,-1.5 L6,-1.5 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <path d="M-7,0 L-6,1.5 L-2,1.5 L-1,0 L-2,-1.5 L-6,-1.5 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <path d="M5,-5 L6.5,-3 L4,-1 L2,-3 L3,-5.5 L5,-6 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <path d="M-5,5 L-6.5,3 L-4,1 L-2,3 L-3,5.5 L-5,6 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <path d="M-5,-5 L-3,-6.5 L-1,-4 L-3,-2 L-5.5,-3 L-6,-5 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <path d="M5,5 L3,6.5 L1,4 L3,2 L5.5,3 L6,5 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.2" />
      <circle r="1.5" fill="#635241" />
    </g>
    
    <!-- Medium gear template -->
    <g id="mediumGear">
      <circle r="9" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M0,-12 L2,-11 L2,-3 L0,-2 L-2,-3 L-2,-11 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <path d="M0,12 L2,11 L2,3 L0,2 L-2,3 L-2,11 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <path d="M12,0 L11,2 L3,2 L2,0 L3,-2 L11,-2 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <path d="M-12,0 L-11,2 L-3,2 L-2,0 L-3,-2 L-11,-2 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <path d="M8.5,-8.5 L10,-6 L6,-3 L4,-5 L5,-9 L7,-10 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <path d="M-8.5,8.5 L-10,6 L-6,3 L-4,5 L-5,9 L-7,10 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <path d="M-8.5,-8.5 L-6,-10 L-3,-6 L-5,-4 L-9,-5 L-10,-7 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <path d="M8.5,8.5 L6,10 L3,6 L5,4 L9,5 L10,7 Z" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.3" />
      <circle r="2.5" fill="#635241" />
    </g>
    
    <!-- Large gear template with clock face -->
    <g id="clockGear">
      <circle r="15" fill="url(#brassGradient)" stroke="#635241" stroke-width="0.8" />
      <path d="M0,-20 L3,-18 L3,-5 L0,-3 L-3,-5 L-3,-18 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M0,20 L3,18 L3,5 L0,3 L-3,5 L-3,18 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M20,0 L18,3 L5,3 L3,0 L5,-3 L18,-3 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M-20,0 L-18,3 L-5,3 L-3,0 L-5,-3 L-18,-3 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M14,-14 L17,-11 L10,-4 L7,-7 L8,-13 L11,-16 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M-14,14 L-17,11 L-10,4 L-7,7 L-8,13 L-11,16 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M-14,-14 L-11,-17 L-4,-10 L-7,-7 L-13,-8 L-16,-11 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      <path d="M14,14 L11,17 L4,10 L7,7 L13,8 L16,11 Z" fill="url(#copperGradient)" stroke="#635241" stroke-width="0.5" />
      
      <!-- Clock face -->
      <circle r="13" fill="#f8f3e7" stroke="#635241" stroke-width="0.3" />
      <circle r="0.8" fill="#635241" />
      
      <!-- Clock markers -->
      <line x1="0" y1="-12" x2="0" y2="-10" stroke="#635241" stroke-width="0.5" />
      <line x1="6" y1="-10.4" x2="5" y2="-8.7" stroke="#635241" stroke-width="0.5" />
      <line x1="10.4" y1="-6" x2="8.7" y2="-5" stroke="#635241" stroke-width="0.5" />
      <line x1="12" y1="0" x2="10" y2="0" stroke="#635241" stroke-width="0.5" />
      <line x1="10.4" y1="6" x2="8.7" y2="5" stroke="#635241" stroke-width="0.5" />
      <line x1="6" y1="10.4" x2="5" y2="8.7" stroke="#635241" stroke-width="0.5" />
      <line x1="0" y1="12" x2="0" y2="10" stroke="#635241" stroke-width="0.5" />
      <line x1="-6" y1="10.4" x2="-5" y2="8.7" stroke="#635241" stroke-width="0.5" />
      <line x1="-10.4" y1="6" x2="-8.7" y2="5" stroke="#635241" stroke-width="0.5" />
      <line x1="-12" y1="0" x2="-10" y2="0" stroke="#635241" stroke-width="0.5" />
      <line x1="-10.4" y1="-6" x2="-8.7" y2="-5" stroke="#635241" stroke-width="0.5" />
      <line x1="-6" y1="-10.4" x2="-5" y2="-8.7" stroke="#635241" stroke-width="0.5" />
      
      <!-- Clock hands -->
      <line id="hourHand" x1="0" y1="0" x2="0" y2="-7" stroke="#635241" stroke-width="0.8" stroke-linecap="round">
        <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="60s" repeatCount="indefinite" />
      </line>
      <line id="minuteHand" x1="0" y1="0" x2="0" y2="-9" stroke="#635241" stroke-width="0.5" stroke-linecap="round">
        <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="5s" repeatCount="indefinite" />
      </line>
    </g>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Stem of the dandelion -->
  <path d="M150,280 C150,280 150,200 150,180 C150,160 155,150 145,140 C135,130 150,120 150,100" 
        stroke="url(#stemGradient)" stroke-width="4" fill="none" stroke-linecap="round" />
  
  <!-- Small mechanical leaves -->
  <path d="M150,230 C160,220 180,225 190,215" stroke="#8b6b4c" stroke-width="2" fill="none" />
  <g transform="translate(190,215)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="10s" repeatCount="indefinite" />
  </g>
  
  <path d="M150,200 C140,190 120,195 110,185" stroke="#8b6b4c" stroke-width="2" fill="none" />
  <g transform="translate(110,185)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="12s" repeatCount="indefinite" />
  </g>
  
  <!-- Central clock gear - the main part of the dandelion -->
  <g transform="translate(150,100)">
    <use xlink:href="#clockGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="120s" repeatCount="indefinite" />
  </g>
  
  <!-- Inner circle of medium gears -->
  <g transform="translate(130,80)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="20s" repeatCount="indefinite" />
  </g>
  <g transform="translate(170,80)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="20s" repeatCount="indefinite" />
  </g>
  <g transform="translate(130,120)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="20s" repeatCount="indefinite" />
  </g>
  <g transform="translate(170,120)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="20s" repeatCount="indefinite" />
  </g>
  <g transform="translate(110,100)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="20s" repeatCount="indefinite" />
  </g>
  <g transform="translate(190,100)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="20s" repeatCount="indefinite" />
  </g>
  <g transform="translate(150,70)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="20s" repeatCount="indefinite" />
  </g>
  <g transform="translate(150,130)">
    <use xlink:href="#mediumGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="20s" repeatCount="indefinite" />
  </g>
  
  <!-- Outer circle of small gears -->
  <g transform="translate(115,65)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="15s" repeatCount="indefinite" />
  </g>
  <g transform="translate(185,65)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="15s" repeatCount="indefinite" />
  </g>
  <g transform="translate(115,135)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="15s" repeatCount="indefinite" />
  </g>
  <g transform="translate(185,135)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="15s" repeatCount="indefinite" />
  </g>
  <g transform="translate(90,100)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="15s" repeatCount="indefinite" />
  </g>
  <g transform="translate(210,100)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="15s" repeatCount="indefinite" />
  </g>
  <g transform="translate(150,50)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="15s" repeatCount="indefinite" />
  </g>
  <g transform="translate(150,150)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="15s" repeatCount="indefinite" />
  </g>
  
  <!-- Gears floating away (seeds blowing in the wind) -->
  <g transform="translate(200,70) scale(0.8)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="3s" repeatCount="indefinite" />
    <animateMotion path="M0,0 C10,-20 20,-30 30,-40" dur="8s" repeatCount="indefinite" />
  </g>
  <g transform="translate(220,90) scale(0.7)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="4s" repeatCount="indefinite" />
    <animateMotion path="M0,0 C20,-10 30,-20 40,-15" dur="12s" repeatCount="indefinite" />
  </g>
  <g transform="translate(195,60) scale(0.6)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="2.5s" repeatCount="indefinite" />
    <animateMotion path="M0,0 C15,-25 25,-40 35,-60" dur="10s" repeatCount="indefinite" />
  </g>
  <g transform="translate(100,70) scale(0.8)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="3s" repeatCount="indefinite" />
    <animateMotion path="M0,0 C-10,-20 -20,-30 -30,-40" dur="9s" repeatCount="indefinite" />
  </g>
  <g transform="translate(80,90) scale(0.7)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="4s" repeatCount="indefinite" />
    <animateMotion path="M0,0 C-20,-10 -30,-20 -40,-15" dur="11s" repeatCount="indefinite" />
  </g>
  <g transform="translate(105,60) scale(0.6)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="2.5s" repeatCount="indefinite" />
    <animateMotion path="M0,0 C-15,-25 -25,-40 -35,-60" dur="10.5s" repeatCount="indefinite" />
  </g>
  
  <!-- Decorative gears at the bottom -->
  <g transform="translate(50,250) scale(0.8)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="10s" repeatCount="indefinite" />
  </g>
  <g transform="translate(250,250) scale(0.8)">
    <use xlink:href="#smallGear" />
    <animateTransform attributeName="transform" type="rotate" from="0" to="-360" dur="10s" repeatCount="indefinite" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's image effectively captures the minimalist steampunk style by integrating clock gears into a simplistic dandelion design.

    The use of subtle colors and the clean composition enhances the visual appeal while adhering closely to the prompt.

    Player 1's image, on the other hand, lacks technical quality and fails to convey the intended theme effectively.

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

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

Player 1
Player 2
1
Circles

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

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

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

Player 1
Player 2
30

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
Player 2
9

Interactivity Metrics

Animations

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

Player 1
Player 2
35
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
27

Complexity Metrics

Path Commands

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

Player 1
Player 2
176
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
Player 2
7
Use Elements

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

Player 1
Player 2
27

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