Back

SVG Drawing Match #264

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A floating clock with fish swimming through the gears"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4567b7" />
      <stop offset="100%" stop-color="#6495ed" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Clock body -->
  <circle cx="150" cy="150" r="120" fill="#fff" stroke="#000" stroke-width="2" />
  
  <!-- Gears -->
  <g transform="translate(150, 150)">
    <path d="M 0, -60 A 60, 60 0 0, 1 60, 0 L 50, 0 A 50, 50 0 0, 0 0, -50 Z" fill="#ccc" />
    <path d="M 0, -40 A 40, 40 0 0, 1 40, 0 L 30, 0 A 30, 30 0 0, 0 0, -30 Z" fill="#ddd" />
    <path d="M 0, -20 A 20, 20 0 0, 1 20, 0 L 10, 0 A 10, 10 0 0, 0 0, -10 Z" fill="#eee" />
  </g>
  
  <!-- Fish -->
  <g transform="translate(150, 150)">
    <g transform="rotate(30)">
      <path d="M 0, -15 A 15, 15 0 0, 1 15, 0 L 10, 0 A 10, 10 0 0, 0 0, -10 Z" fill="#ff69b4" />
      <path d="M 5, -5 A 5, 5 0 0, 1 10, 0 L 5, 0 A 5, 5 0 0, 0 5, -5 Z" fill="#fff" />
      <circle cx="5" cy="-5" r="2" fill="#000" />
    </g>
    <g transform="rotate(120)">
      <path d="M 0, -15 A 15, 15 0 0, 1 15, 0 L 10, 0 A 10, 10 0 0, 0 0, -10 Z" fill="#ff99cc" />
      <path d="M 5, -5 A 5, 5 0 0, 1 10, 0 L 5, 0 A 5, 5 0 0, 0 5, -5 Z" fill="#fff" />
      <circle cx="5" cy="-5" r="2" fill="#000" />
    </g>
    <g transform="rotate(210)">
      <path d="M 0, -15 A 15, 15 0 0, 1 15, 0 L 10, 0 A 10, 10 0 0, 0 0, -10 Z" fill="#ffb6c1" />
      <path d="M 5, -5 A 5, 5 0 0, 1 10, 0 L 5, 0 A 5, 5 0 0, 0 5, -5 Z" fill="#fff" />
      <circle cx="5" cy="-5" r="2" fill="#000" />
    </g>
  </g>
  
  <!-- Clock hands -->
  <g transform="translate(150, 150)">
    <line x1="0" y1="0" x2="0" y2="-80" stroke="#000" stroke-width="2" />
    <line x1="0" y1="0" x2="50" y2="0" stroke="#000" stroke-width="2" />
  </g>
  
  <!-- Water ripples -->
  <g transform="translate(150, 150)">
    <circle cx="0" cy="0" r="10" fill="#fff" opacity="0.5" />
    <circle cx="0" cy="0" r="20" fill="#fff" opacity="0.3" />
    <circle cx="0" cy="0" r="30" fill="#fff" opacity="0.1" />
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#5BCEFA" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#0A5D94" stop-opacity="0.9"/>
    </linearGradient>
    <radialGradient id="clockFaceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFF8E8"/>
      <stop offset="85%" stop-color="#F0E6D2"/>
      <stop offset="100%" stop-color="#D8C9AB"/>
    </radialGradient>
    <filter id="bubblesFilter" x="-20%" y="-20%" width="140%" height="140%">
      <feTurbulence baseFrequency="0.02" numOctaves="2" seed="2"/>
      <feDisplacementMap in="SourceGraphic" scale="5"/>
    </filter>
    <filter id="glowFilter" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    <pattern id="bubblePattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="white" opacity="0.6"/>
      <circle cx="25" cy="15" r="1" fill="white" opacity="0.5"/>
      <circle cx="5" cy="25" r="1.5" fill="white" opacity="0.4"/>
      <circle cx="20" cy="26" r="1" fill="white" opacity="0.5"/>
    </pattern>
  </defs>

  <!-- Background water -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waterGradient)"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#bubblePattern)" filter="url(#bubblesFilter)" opacity="0.7"/>

  <!-- Main clock face -->
  <circle cx="150" cy="150" r="80" fill="url(#clockFaceGradient)" stroke="#B8A88A" stroke-width="3" opacity="0.9"/>

  <!-- Clock numbers -->
  <g font-family="Georgia" font-weight="bold" font-size="14" fill="#5A4A2F">
    <text x="146" y="80" text-anchor="middle">12</text>
    <text x="195" y="95" text-anchor="middle">1</text>
    <text x="220" y="135" text-anchor="middle">2</text>
    <text x="225" y="155" text-anchor="middle">3</text>
    <text x="220" y="175" text-anchor="middle">4</text>
    <text x="195" y="210" text-anchor="middle">5</text>
    <text x="150" y="225" text-anchor="middle">6</text>
    <text x="105" y="210" text-anchor="middle">7</text>
    <text x="80" y="175" text-anchor="middle">8</text>
    <text x="75" y="155" text-anchor="middle">9</text>
    <text x="80" y="135" text-anchor="middle">10</text>
    <text x="105" y="95" text-anchor="middle">11</text>
  </g>

  <!-- Clock hands -->
  <g id="hands">
    <line id="hour-hand" x1="150" y1="150" x2="150" y2="105" stroke="#5A4A2F" stroke-width="5" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="12h" repeatCount="indefinite"/>
    </line>
    <line id="minute-hand" x1="150" y1="150" x2="150" y2="90" stroke="#5A4A2F" stroke-width="3" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="60min" repeatCount="indefinite"/>
    </line>
    <line id="second-hand" x1="150" y1="150" x2="150" y2="85" stroke="#BD4B37" stroke-width="1.5" stroke-linecap="round">
      <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="60s" repeatCount="indefinite"/>
    </line>
    <circle cx="150" cy="150" r="5" fill="#5A4A2F"/>
  </g>

  <!-- Visible gears -->
  <g opacity="0.8">
    <!-- Large gear -->
    <g transform="translate(150, 150)">
      <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="-360 150 150" dur="120s" repeatCount="indefinite" additive="sum"/>
      <circle cx="0" cy="0" r="50" fill="none" stroke="#C09E6B" stroke-width="2"/>
      <circle cx="0" cy="0" r="10" fill="#C09E6B"/>
      <g id="gear-teeth">
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(30)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(60)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(90)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(120)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(150)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(180)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(210)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(240)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(270)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(300)"/>
        <path d="M0,0 L-5,-50 L5,-50 Z" fill="#C09E6B" transform="rotate(330)"/>
      </g>
    </g>
    
    <!-- Medium gear -->
    <g transform="translate(205, 120)">
      <animateTransform attributeName="transform" type="rotate" from="0 205 120" to="360 205 120" dur="40s" repeatCount="indefinite" additive="sum"/>
      <circle cx="0" cy="0" r="25" fill="none" stroke="#C09E6B" stroke-width="2"/>
      <circle cx="0" cy="0" r="5" fill="#C09E6B"/>
      <g id="medium-gear-teeth">
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B"/>
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B" transform="rotate(45)"/>
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B" transform="rotate(90)"/>
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B" transform="rotate(135)"/>
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B" transform="rotate(180)"/>
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B" transform="rotate(225)"/>
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B" transform="rotate(270)"/>
        <path d="M0,0 L-3,-25 L3,-25 Z" fill="#C09E6B" transform="rotate(315)"/>
      </g>
    </g>
    
    <!-- Small gear -->
    <g transform="translate(95, 180)">
      <animateTransform attributeName="transform" type="rotate" from="0 95 180" to="-720 95 180" dur="20s" repeatCount="indefinite" additive="sum"/>
      <circle cx="0" cy="0" r="15" fill="none" stroke="#C09E6B" stroke-width="2"/>
      <circle cx="0" cy="0" r="3" fill="#C09E6B"/>
      <g id="small-gear-teeth">
        <path d="M0,0 L-2,-15 L2,-15 Z" fill="#C09E6B"/>
        <path d="M0,0 L-2,-15 L2,-15 Z" fill="#C09E6B" transform="rotate(60)"/>
        <path d="M0,0 L-2,-15 L2,-15 Z" fill="#C09E6B" transform="rotate(120)"/>
        <path d="M0,0 L-2,-15 L2,-15 Z" fill="#C09E6B" transform="rotate(180)"/>
        <path d="M0,0 L-2,-15 L2,-15 Z" fill="#C09E6B" transform="rotate(240)"/>
        <path d="M0,0 L-2,-15 L2,-15 Z" fill="#C09E6B" transform="rotate(300)"/>
      </g>
    </g>
  </g>
  
  <!-- Fish swimming through the gears -->
  <!-- Fish 1 - Orange -->
  <g transform="translate(150, 150)">
    <animateTransform attributeName="transform" type="translate" 
      path="M-100,30 C-50,0 50,60 100,20 C150,-20 200,40 250,10 C300,-20 330,50 360,0"
      dur="15s" repeatCount="indefinite"/>
    <g transform="scale(0.8)">
      <path d="M0,0 C5,-5 10,-7 20,-5 C30,-2 35,0 40,0 C30,5 20,7 10,5 C5,2 -5,5 0,0 Z" fill="#FF7F00" stroke="#E55D00" stroke-width="1">
        <animateTransform attributeName="transform" type="rotate" from="-5" to="5" dur="0.5s" repeatCount="indefinite" additive="sum"/>
      </path>
      <path d="M35,0 L45,5 L45,-5 Z" fill="#FF7F00" stroke="#E55D00" stroke-width="1"/>
      <circle cx="10" cy="-2" r="2" fill="#000"/>
    </g>
  </g>
  
  <!-- Fish 2 - Blue -->
  <g transform="translate(150, 150)">
    <animateTransform attributeName="transform" type="translate" 
      path="M250,-50 C200,-30 150,10 100,-20 C50,-50 0,-20 -50,-40 C-100,-60 -150,-30 -200,-50"
      dur="18s" repeatCount="indefinite"/>
    <g transform="scale(0.7) rotate(180)">
      <path d="M0,0 C5,-7 15,-10 25,-8 C35,-5 45,0 50,0 C40,8 25,13 10,8 C0,4 -10,7 0,0 Z" fill="#3D85C6" stroke="#0B5394" stroke-width="1">
        <animateTransform attributeName="transform" type="rotate" from="-7" to="7" dur="0.6s" repeatCount="indefinite" additive="sum"/>
      </path>
      <path d="M45,0 L60,8 L60,-8 Z" fill="#3D85C6" stroke="#0B5394" stroke-width="1"/>
      <circle cx="15" cy="-3" r="2" fill="#000"/>
    </g>
  </g>
  
  <!-- Fish 3 - Yellow -->
  <g transform="translate(150, 150)">
    <animateTransform attributeName="transform" type="translate" 
      path="M50,100 C100,70 150,110 200,80 C250,50 300,90 350,60"
      dur="12s" repeatCount="indefinite"/>
    <g transform="scale(0.6) rotate(-30)">
      <path d="M0,0 C7,-5 15,-8 25,-7 C35,-5 42,0 45,0 C35,7 22,10 10,7 C3,3 -7,5 0,0 Z" fill="#FFD966" stroke="#D6A300" stroke-width="1">
        <animateTransform attributeName="transform" type="rotate" from="-8" to="8" dur="0.4s" repeatCount="indefinite" additive="sum"/>
      </path>
      <path d="M42,0 L52,6 L52,-6 Z" fill="#FFD966" stroke="#D6A300" stroke-width="1"/>
      <circle cx="12" cy="-2" r="2" fill="#000"/>
    </g>
  </g>

  <!-- Bubble effects -->
  <g>
    <circle cx="80" cy="210" r="3" fill="white" opacity="0.7">
      <animate attributeName="cy" from="210" to="50" dur="8s" begin="1s" repeatCount="indefinite"/>
      <animate attributeName="opacity" from="0.7" to="0" dur="8s" begin="1s" repeatCount="indefinite"/>
    </circle>
    <circle cx="190" cy="240" r="2" fill="white" opacity="0.6">
      <animate attributeName="cy" from="240" to="40" dur="10s" begin="2s" repeatCount="indefinite"/>
      <animate attributeName="opacity" from="0.6" to="0" dur="10s" begin="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="220" cy="180" r="4" fill="white" opacity="0.5">
      <animate attributeName="cy" from="180" to="30" dur="12s" begin="0s" repeatCount="indefinite"/>
      <animate attributeName="opacity" from="0.5" to="0" dur="12s" begin="0s" repeatCount="indefinite"/>
    </circle>
    <circle cx="120" cy="220" r="2.5" fill="white" opacity="0.6">
      <animate attributeName="cy" from="220" to="60" dur="9s" begin="3s" repeatCount="indefinite"/>
      <animate attributeName="opacity" from="0.6" to="0" dur="9s" begin="3s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Light rays -->
  <g opacity="0.2" filter="url(#glowFilter)">
    <path d="M150,150 L50,50" stroke="white" stroke-width="2"/>
    <path d="M150,150 L250,50" stroke="white" stroke-width="2"/>
    <path d="M150,150 L250,250" stroke="white" stroke-width="2"/>
    <path d="M150,150 L50,250" stroke="white" stroke-width="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's image more effectively captures the prompt with a clear depiction of fish swimming through the gears of a clock, maintaining a balance between creativity and adherence to the theme.

    The technical quality is high with detailed elements and a visually appealing composition.

    Player 1's submission lacks clear representation of the concept, focusing on minimalism without illustrating the interplay between fish and clock gears.

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
19
Player 2
60
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
7
Player 2
19
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
3
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
9
Player 2
36
Groups

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

Player 1
7
Player 2
17

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
1
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
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
3
Player 2
12
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
17

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
17

Interactivity Metrics

Animations

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

Player 1
Player 2
20
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
7
Player 2
32

Complexity Metrics

Path Commands

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

Player 1
45
Player 2
142
Max Group Nesting

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

Player 1
1
Player 2
2
Defs Elements

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

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

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