Back

SVG Drawing Match #622

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock made of clouds, with rainbow-colored gears floating in the sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with gradient -->
  <rect width="300" height="300" fill="url(#skyGrad)" />
  
  <!-- Cloud-shaped clock face -->
  <path d="M150,50C113.5,50 80,83.5 80,120.5C80,157.5 113.5,190 150,190C186.5,190 220,157.5 220,120.5C220,83.5 186.5,50 150,50Z"
        fill="white" fill-opacity="0.9" stroke="#808080" stroke-width="2"/>
  
  <!-- Hour hand -->
  <line x1="150" y1="120" x2="150" y2="170" stroke="#4CAF50" stroke-width="4"/>
  
  <!-- Minute hand -->
  <line x1="120" y1="150" x2="180" y2="150" stroke="#2196F3" stroke-width="3"/>
  
  <!-- Second hand -->
  <line x1="140" y1="140" x2="160" y2="160" stroke="#FF9800" stroke-width="2"/>
  
  <!-- Rainbow gear -->
  <g transform="rotate(15 150 150)">
    <circle cx="150" cy="150" r="60" fill="url(#rainbowGrad)" stroke="#fff" stroke-width="2"/>
    <path d="M150,120L160,130 170,140 160,150 150,160 140,150 130,140 140,130 150,120Z"
          fill="url(#rainbowGrad)" opacity="0.8"/>
  </g>

  <!-- Floating gears -->
  <g transform="rotate(30 150 150)">
    <circle cx="100" cy="100" r="30" fill="url(#rainbowGrad2)" stroke="#fff" stroke-width="1.5"/>
    <circle cx="200" cy="200" r="40" fill="url(#rainbowGrad3)" stroke="#fff" stroke-width="1.5"/>
    <circle cx="50" cy="250" r="35" fill="url(#rainbowGrad)" stroke="#fff" stroke-width="1.5"/>
    <circle cx="250" cy="50" r="25" fill="url(#rainbowGrad2)" stroke="#fff" stroke-width="1.5"/>
  </g>

  <!-- Cloud details -->
  <path d="M80,120C60,120 50,130 50,140C50,150 60,160 70,160C80,160 90,150 90,140C90,130 80,120 70,120C60,120 50,110 50,100C50,90 60,80 70,70C80,70 90,80 90,90C90,100 80,110 70,110C60,110 50,100 50,90Z"
        fill="white" fill-opacity="0.7" stroke="#808080" stroke-width="1.5"/>
  
  <!-- Gradients -->
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#E0F6FF;stop-opacity:1" />
    </linearGradient>
    
    <linearGradient id="rainbowGrad" x1="0" y1="0" x2="0" y2="100" spreadMethod="reflect">
      <stop offset="0%" style="stop-color:#FF0000" />
      <stop offset="20%" style="stop-color:#FF9900" />
      <stop offset="40%" style="stop-color:#FFFF00" />
      <stop offset="60%" style="stop-color:#33FF00" />
      <stop offset="80%" style="stop-color:#0099FF" />
      <stop offset="100%" style="stop-color:#4B0082" />
    </linearGradient>
    
    <linearGradient id="rainbowGrad2" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0%" style="stop-color:#FF0000" />
      <stop offset="20%" style="stop-color:#FFA500" />
      <stop offset="40%" style="stop-color:#FFD700" />
      <stop offset="60%" style="stop-color:#00FF00" />
      <stop offset="80%" style="stop-color:#00BFFF" />
      <stop offset="100%" style="stop-color:#8A2BE2" />
    </linearGradient>
    
    <linearGradient id="rainbowGrad3" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0%" style="stop-color:#FF0000" />
      <stop offset="20%" style="stop-color:#FF4500" />
      <stop offset="40%" style="stop-color:#FFD700" />
      <stop offset="60%" style="stop-color:#32CD32" />
      <stop offset="80%" style="stop-color:#1E90FF" />
      <stop offset="100%" style="stop-color:#9400D3" />
    </linearGradient>
  </defs>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Sky Gradient -->
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </radialGradient>
    <!-- Cloud Pattern -->
    <filter id="cloudBlur" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" />
    </filter>
    <!-- Rainbow Gradient for Gears -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16%" stop-color="#FF7F00"/>
      <stop offset="33%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66%" stop-color="#0000FF"/>
      <stop offset="83%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8B00FF"/>
    </linearGradient>
  </defs>
  
  <!-- Sky Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Cloud Clock Base -->
  <g id="cloudClock">
    <ellipse cx="150" cy="150" rx="90" ry="60" fill="#FFFFFF" filter="url(#cloudBlur)" opacity="0.8"/>
    <ellipse cx="110" cy="140" rx="40" ry="30" fill="#FFFFFF" filter="url(#cloudBlur)" opacity="0.9"/>
    <ellipse cx="190" cy="140" rx="40" ry="30" fill="#FFFFFF" filter="url(#cloudBlur)" opacity="0.9"/>
    <ellipse cx="150" cy="110" rx="50" ry="35" fill="#FFFFFF" filter="url(#cloudBlur)" opacity="0.9"/>
    <!-- Clock Hands -->
    <line x1="150" y1="150" x2="150" y2="90" stroke="#333" stroke-width="4" stroke-linecap="round"/>
    <line x1="150" y1="150" x2="200" y2="150" stroke="#333" stroke-width="4" stroke-linecap="round"/>
    <circle cx="150" cy="150" r="5" fill="#333"/>
  </g>
  
  <!-- Rainbow Gears Floating -->
  <g id="gears">
    <!-- Gear 1 -->
    <g transform="translate(80,60)">
      <circle cx="0" cy="0" r="20" fill="url(#rainbowGradient)" />
      <g stroke="black" stroke-width="1">
        <line x1="0" y1="-24" x2="0" y2="-16" />
        <line x1="16" y1="-16" x2="22" y2="-10" />
        <line x1="24" y1="0" x2="16" y2="0" />
        <line x1="16" y1="16" x2="10" y2="22" />
        <line x1="0" y1="24" x2="0" y2="16" />
        <line x1="-16" y1="16" x2="-10" y2="22" />
        <line x1="-24" y1="0" x2="-16" y2="0" />
        <line x1="-16" y1="-16" x2="-10" y2="-22" />
      </g>
    </g>
    <!-- Gear 2 -->
    <g transform="translate(220,80)">
      <circle cx="0" cy="0" r="15" fill="url(#rainbowGradient)" />
      <g stroke="black" stroke-width="1">
        <line x1="0" y1="-18" x2="0" y2="-12" />
        <line x1="13" y1="-9" x2="16" y2="-4" />
        <line x1="18" y1="0" x2="12" y2="0" />
        <line x1="13" y1="9" x2="8" y2="14" />
        <line x1="0" y1="18" x2="0" y2="12" />
        <line x1="-13" y1="9" x2="-8" y2="14" />
        <line x1="-18" y1="0" x2="-12" y2="0" />
        <line x1="-13" y1="-9" x2="-8" y2="-14" />
      </g>
    </g>
    <!-- Gear 3 -->
    <g transform="translate(180,220)">
      <circle cx="0" cy="0" r="25" fill="url(#rainbowGradient)" />
      <g stroke="black" stroke-width="1">
        <line x1="0" y1="-30" x2="0" y2="-22" />
        <line x1="21" y1="-21" x2="27" y2="-14" />
        <line x1="30" y1="0" x2="24" y2="0" />
        <line x1="21" y1="21" x2="15" y2="27" />
        <line x1="0" y1="30" x2="0" y2="22" />
        <line x1="-21" y1="21" x2="-15" y2="27" />
        <line x1="-30" y1="0" x2="-24" y2="0" />
        <line x1="-21" y1="-21" x2="-15" y2="-27" />
      </g>
    </g>
    <!-- Gear 4 -->
    <g transform="translate(60,210)">
      <circle cx="0" cy="0" r="18" fill="url(#rainbowGradient)" />
      <g stroke="black" stroke-width="1">
        <line x1="0" y1="-22" x2="0" y2="-16" />
        <line x1="15" y1="-10" x2="19" y2="-5" />
        <line x1="22" y1="0" x2="16" y2="0" />
        <line x1="15" y1="10" x2="10" y2="15" />
        <line x1="0" y1="22" x2="0" y2="16" />
        <line x1="-15" y1="10" x2="-10" y2="15" />
        <line x1="-22" y1="0" x2="-16" y2="0" />
        <line x1="-15" y1="-10" x2="-10" y2="-15" />
      </g>
    </g>
  </g>

  <!-- Additional artistic swirl to tie elements together -->
  <path d="M50,250 Q150,300 250,250" fill="none" stroke="white" stroke-width="3" stroke-dasharray="8,4" opacity="0.7"/>
</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 submission more effectively captures the prompt with a clear depiction of a cloud-shaped clock and rainbow-colored gears.

    The technical execution is stronger, with smooth gradients and a coherent color scheme, making it visually appealing.

    Player 1's image lacks clarity in representing the concept of a clock and rainbow gears, reducing its effectiveness in adhering to 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
12
Player 2
45
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
5
Player 2
5
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
3
Player 2
34
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
1
Groups

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

Player 1
2
Player 2
10

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
2
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
1
Player 2
5
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
12

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

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
2
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

The number of elements defined within the defs element in the SVG.

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