Back

SVG Drawing Match #533

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Clock made of rainbow gears, each gear a different time period theme"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#f7f7f7" />

  <!-- Rainbow Gradient -->
  <defs>
    <linearGradient id="rainbow-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff0000" />
      <stop offset="20%" stop-color="#ff7f00" />
      <stop offset="40%" stop-color="#ffff00" />
      <stop offset="60%" stop-color="#00ff00" />
      <stop offset="80%" stop-color="#0000ff" />
      <stop offset="100%" stop-color="#8b00ff" />
    </linearGradient>
  </defs>

  <!-- Clock Background -->
  <circle cx="150" cy="150" r="140" fill="url(#rainbow-gradient)" />

  <!-- Gear 1 - Ancient theme gear -->
  <g>
    <defs>
      <path id="gear-1" d="M40,100 l31.18,31.18 l-10,20 l-21.18,-10z" />
    </defs>
    <use xlink:href="#gear-1" fill="#d9c1ff" />
  </g>

  <!-- Gear 2 - Medieval theme gear -->
  <g>
    <defs>
      <path id="gear-2" d="M100,40 l31.18,31.18 l-10,20 l-21.18,-10z" />
    </defs>
    <use xlink:href="#gear-2" fill="#ffddc1" />
  </g>

  <!-- Gear 3 - Industrial Revolution theme gear -->
  <g>
    <defs>
      <path id="gear-3" d="M200,40 l31.18,31.18 l-10,20 l-21.18,-10z" />
    </defs>
    <use xlink:href="#gear-3" fill="#baffd0" />
  </g>

  <!-- Gear 4 - Future theme gear -->
  <g>
    <defs>
      <path id="gear-4" d="M260,100 l31.18,31.18 l-10,20 l-21.18,-10z" />
    </defs>
    <use xlink:href="#gear-4" fill="#ffd1dc" />
  </g>

</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="rainbow" cx="150" cy="150" rx="150" ry="150">
      <stop offset="0%" style="stop-color:red;stop-opacity:1"/>
      <stop offset="14.28%" style="stop-color:orange;stop-opacity:1"/>
      <stop offset="28.56%" style="stop-color:yellow;stop-opacity:1"/>
      <stop offset="42.84%" style="stop-color:green;stop-opacity:1"/>
      <stop offset="57.12%" style="stop-color:blue;stop-opacity:1"/>
      <stop offset="71.4%" style="stop-color:indigo;stop-opacity:1"/>
      <stop offset="85.68%" style="stop-color:violet;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:red;stop-opacity:1"/>
    </radialGradient>
  </defs>
  
  <circle cx="150" cy="150" r="140" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
  
  <!-- Ancient Gear -->
  <g transform="rotate(30 150 150) scale(0.8 0.8)">
    <path d="M50,50 L60,90 L70,50 L90,60 L70,70 L60,50 L50,60 L40,70 L30,50 L50,50" 
          fill="url(#rainbow)" stroke="#333" stroke-width="2"/>
    <path d="M50,50 L60,90 L70,50 L90,60 L70,70 L60,50 L50,60 L40,70 L30,50 L50,50" 
          fill="none" stroke="#gold" stroke-width="1.5"/>
  </g>

  <!-- Medieval Gear -->
  <g transform="rotate(90 150 150) scale(0.7 0.7)">
    <path d="M30,30 L45,45 Q60,30 60,15 L60,45 Q75,60 90,45 L105,30 Q120,15 150,0 L135,15 Q120,30 105,45 L90,60 L75,45 Q60,30 45,45 L30,30" 
          fill="#4B5320" stroke="#8B4513" stroke-width="3"/>
    <path d="M60,60 L90,30 L60,0 L30,30 L60,60" fill="#8B4513" stroke="#8B4513" stroke-width="2"/>
  </g>

  <!-- Industrial Gear -->
  <g transform="rotate(150 150 150) scale(0.75 0.75)">
    <circle cx="150" cy="150" r="40" fill="#666" stroke="#333" stroke-width="4"/>
    <rect x="140" y="140" width="20" height="20" fill="#444"/>
    <rect x="160" y="160" width="20" height="20" fill="#444"/>
    <rect x="170" y="130" width="20" height="20" fill="#444"/>
    <rect x="130" y="160" width="20" height="20" fill="#444"/>
  </g>

  <!-- Art Deco Gear -->
  <g transform="rotate(210 150 150) scale(0.85 0.85)">
    <path d="M50,50 L70,70 L90,50 L110,70 L90,90 L70,110 L50,90 L30,70 L70,50 L50,50" 
          fill="#GOLD" stroke="#333" stroke-width="2"/>
    <path d="M50,50 L70,70 L90,50 L110,70 L90,90 L70,110 L50,90 L30,70 L70,50 L50,50" 
          fill="none" stroke="#gold" stroke-width="1.5"/>
  </g>

  <!-- Futuristic Gear -->
  <g transform="rotate(270 150 150) scale(0.9 0.9)">
    <circle cx="150" cy="150" r="50" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
    <circle cx="150" cy="150" r="40" fill="none" stroke="#fff" stroke-width="3"/>
    <circle cx="150" cy="150" r="30" fill="none" stroke="#fff" stroke-width="3"/>
    <circle cx="150" cy="150" r="20" fill="none" stroke="#fff" stroke-width="3"/>
  </g>

  <!-- Central Gear -->
  <g transform="scale(0.6 0.6)">
    <circle cx="150" cy="150" r="20" fill="#FF69B4" stroke="#8B0A1A" stroke-width="3"/>
    <circle cx="150" cy="150" r="15" fill="none" stroke="#8B0A1A" stroke-width="2"/>
    <circle cx="150" cy="150" r="10" fill="none" stroke="#8B0A1A" stroke-width="1"/>
  </g>

  <!-- Numbers -->
  <path d="M150,20 L140,30 L160,30 L150,20" fill="#000"/>
  <path d="M250,150 L240,140 L260,140 L250,150" fill="#000"/>
  <path d="M150,280 L140,270 L160,270 L150,280" fill="#000"/>
  <path d="M50,150 L40,140 L60,140 L50,150" fill="#000"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission features a more visually diverse and complex arrangement, incorporating various colors and shapes that suggest different time periods, aligning better with the prompt.

    While Player 1's image has an interesting concept with a spiral design, it lacks the thematic diversity and rainbow gear representation as 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
6
Player 2
23
Rectangles

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

Player 1
1
Player 2
4
Circles

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

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

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

Player 1
4
Player 2
6

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
9

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
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
20
Player 2
74
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
5
Player 2
1
Use Elements

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

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