Back

SVG Drawing Match #65

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat wearing a top hat, balancing on a unicycle on a rainbow"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions for patterns and gradients -->
  <defs>
    <!-- Rainbow gradient -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff0000" />
      <stop offset="16.6%" stop-color="#ff9900" />
      <stop offset="33.3%" stop-color="#ffff00" />
      <stop offset="50%" stop-color="#00ff00" />
      <stop offset="66.6%" stop-color="#0099ff" />
      <stop offset="83.3%" stop-color="#6633ff" />
      <stop offset="100%" stop-color="#ff00ff" />
    </linearGradient>
    
    <!-- Cat fur pattern -->
    <pattern id="furPattern" width="5" height="5" patternUnits="userSpaceOnUse">
      <path d="M0,0 L5,5 M5,0 L0,5" stroke="#666" stroke-width="0.5" stroke-opacity="0.2" />
    </pattern>
    
    <!-- Top hat gradient -->
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333" />
      <stop offset="100%" stop-color="#000" />
    </linearGradient>
    
    <!-- Hat band gradient -->
    <linearGradient id="bandGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#cc0000" />
      <stop offset="100%" stop-color="#990000" />
    </linearGradient>
    
    <!-- Unicycle gradient -->
    <linearGradient id="unicycleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#444" />
      <stop offset="100%" stop-color="#111" />
    </linearGradient>
    
    <!-- Sparkle filter -->
    <filter id="sparkle" x="-50%" y="-50%" width="200%" height="200%">
      <feTurbulence baseFrequency="0.05" result="noise" type="fractalNoise" numOctaves="1" />
      <feDisplacementMap in="SourceGraphic" in2="noise" scale="3" />
      <feGaussianBlur stdDeviation="0.5" />
      <feComposite operator="in" in2="SourceGraphic" />
    </filter>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
  
  <!-- Clouds -->
  <ellipse cx="50" cy="50" rx="30" ry="20" fill="white" opacity="0.8" />
  <ellipse cx="70" cy="45" rx="25" ry="15" fill="white" opacity="0.8" />
  <ellipse cx="30" cy="55" rx="20" ry="12" fill="white" opacity="0.8" />
  
  <ellipse cx="220" cy="70" rx="35" ry="20" fill="white" opacity="0.8" />
  <ellipse cx="250" cy="65" rx="25" ry="15" fill="white" opacity="0.8" />
  <ellipse cx="190" cy="75" rx="20" ry="12" fill="white" opacity="0.8" />
  
  <!-- Rainbow -->
  <path d="M30,220 Q150,120 270,220" stroke="url(#rainbowGradient)" stroke-width="20" fill="none" stroke-linecap="round" />
  
  <!-- Unicycle wheel -->
  <circle cx="150" cy="215" r="25" fill="none" stroke="#333" stroke-width="3" />
  <circle cx="150" cy="215" r="20" fill="none" stroke="#666" stroke-width="1" />
  <circle cx="150" cy="215" r="3" fill="#333" />
  
  <!-- Spokes -->
  <g stroke="#444" stroke-width="1.5">
    <line x1="150" y1="215" x2="150" y2="190" />
    <line x1="150" y1="215" x2="150" y2="240" />
    <line x1="150" y1="215" x2="175" y2="215" />
    <line x1="150" y1="215" x2="125" y2="215" />
    <line x1="150" y1="215" x2="167" y2="198" />
    <line x1="150" y1="215" x2="133" y2="198" />
    <line x1="150" y1="215" x2="167" y2="232" />
    <line x1="150" y1="215" x2="133" y2="232" />
  </g>
  
  <!-- Unicycle post -->
  <rect x="147" y="160" width="6" height="55" fill="url(#unicycleGradient)" />
  <rect x="142" y="160" width="16" height="6" rx="3" ry="3" fill="#444" />
  <ellipse cx="150" cy="154" rx="10" ry="3" fill="#333" />
  
  <!-- Cat body -->
  <ellipse cx="150" cy="130" rx="30" ry="25" fill="#888" fill-opacity="0.9" />
  <ellipse cx="150" cy="130" rx="28" ry="23" fill="#999" />
  <ellipse cx="150" cy="130" rx="24" ry="19" fill="#aaa" />
  <rect x="145" y="150" width="10" height="20" fill="#aaa" />
  
  <!-- Cat limbs -->
  <path d="M135,140 Q125,160 130,175" stroke="#aaa" stroke-width="5" fill="none" />
  <path d="M165,140 Q175,160 170,175" stroke="#aaa" stroke-width="5" fill="none" />
  <path d="M130,145 C120,135 115,145 110,156" stroke="#aaa" stroke-width="4" fill="none" />
  <path d="M170,145 C180,135 185,145 190,156" stroke="#aaa" stroke-width="4" fill="none" />
  
  <!-- Cat tail -->
  <path d="M175,135 C195,125 200,110 190,100 C185,95 175,93 170,100" stroke="#aaa" stroke-width="6" fill="none" stroke-linecap="round" />
  
  <!-- Cat head -->
  <ellipse cx="150" cy="102" rx="22" ry="20" fill="#aaa" />
  
  <!-- Cat face -->
  <circle cx="140" cy="98" r="2" fill="#000" />
  <circle cx="160" cy="98" r="2" fill="#000" />
  <ellipse cx="150" cy="105" rx="4" ry="2" fill="#ff9999" />
  <path d="M146,102 Q150,106 154,102" stroke="#000" stroke-width="1" fill="none" />
  
  <!-- Cat ears -->
  <polygon points="133,88 140,97 126,97" fill="#aaa" />
  <polygon points="167,88 160,97 174,97" fill="#aaa" />
  <polygon points="134,90 139,96 129,96" fill="#ff9999" />
  <polygon points="166,90 161,96 171,96" fill="#ff9999" />
  
  <!-- Cat whiskers -->
  <line x1="137" y1="105" x2="117" y2="100" stroke="#fff" stroke-width="1" />
  <line x1="137" y1="107" x2="117" y2="107" stroke="#fff" stroke-width="1" />
  <line x1="137" y1="109" x2="117" y2="114" stroke="#fff" stroke-width="1" />
  
  <line x1="163" y1="105" x2="183" y2="100" stroke="#fff" stroke-width="1" />
  <line x1="163" y1="107" x2="183" y2="107" stroke="#fff" stroke-width="1" />
  <line x1="163" y1="109" x2="183" y2="114" stroke="#fff" stroke-width="1" />
  
  <!-- Top hat -->
  <ellipse cx="150" cy="84" rx="30" ry="5" fill="url(#hatGradient)" />
  <rect x="135" y="55" width="30" height="30" fill="url(#hatGradient)" />
  <rect x="135" y="76" width="30" height="5" fill="url(#bandGradient)" />
  <circle cx="157" cy="78" r="2" fill="gold" filter="url(#sparkle)" />
  
  <!-- Stars in sky -->
  <g fill="yellow" opacity="0.8">
    <circle cx="40" cy="20" r="1.5" />
    <circle cx="80" cy="25" r="2" />
    <circle cx="120" cy="15" r="1" />
    <circle cx="200" cy="20" r="1.5" />
    <circle cx="250" cy="30" r="1" />
    <circle cx="270" cy="15" r="2" />
  </g>
  
  <!-- Sparkles on rainbow -->
  <g fill="white" filter="url(#sparkle)">
    <circle cx="60" cy="200" r="1" />
    <circle cx="100" cy="180" r="1.5" />
    <circle cx="150" cy="170" r="1" />
    <circle cx="200" cy="180" r="1.5" />
    <circle cx="240" cy="200" r="1" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbowGradient" x1="0%" y1="100%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.66%" stop-color="#FF7F00"/>
      <stop offset="33.33%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66.66%" stop-color="#0000FF"/>
      <stop offset="83.33%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8F00FF"/>
    </linearGradient>
  </defs>
  <!-- Rainbow -->
  <g id="rainbow">
    <path d="M 50 250 A 100 100 0 0 1 250 250" fill="none" stroke="red" stroke-width="10"/>
    <path d="M 60 250 A 90 90 0 0 1 240 250" fill="none" stroke="orange" stroke-width="10"/>
    <path d="M 70 250 A 80 80 0 0 1 230 250" fill="none" stroke="yellow" stroke-width="10"/>
    <path d="M 80 250 A 70 70 0 0 1 220 250" fill="none" stroke="green" stroke-width="10"/>
    <path d="M 90 250 A 60 60 0 0 1 210 250" fill="none" stroke="blue" stroke-width="10"/>
    <path d="M 100 250 A 50 50 0 0 1 200 250" fill="none" stroke="indigo" stroke-width="10"/>
    <path d="M 110 250 A 40 40 0 0 1 190 250" fill="none" stroke="violet" stroke-width="10"/>
  </g>
  <!-- Unicycle Wheel -->
  <circle cx="150" cy="200" r="40" fill="none" stroke="#333" stroke-width="5"/>
  <!-- Unicycle Spokes -->
  <line x1="150" y1="200" x2="150" y2="160" stroke="#333" stroke-width="2"/>
  <line x1="150" y1="200" x2="170" y2="180" stroke="#333" stroke-width="2"/>
  <line x1="150" y1="200" x2="130" y2="180" stroke="#333" stroke-width="2"/>
  <!-- Unicycle Pedal -->
  <line x1="150" y1="200" x2="170" y2="210" stroke="#333" stroke-width="3"/>
  <line x1="170" y1="210" x2="170" y2="220" stroke="#333" stroke-width="3"/>
  <!-- Unicycle Seat -->
  <line x1="150" y1="160" x2="150" y2="130" stroke="#333" stroke-width="3"/>
  <rect x="140" y="130" width="20" height="5" fill="#333"/>
  <!-- Cat Body -->
  <g id="cat">
    <!-- Body -->
    <ellipse cx="150" cy="120" rx="15" ry="25" fill="#D8BFD8"/>
    <!-- Head -->
    <circle cx="150" cy="80" r="12" fill="#D8BFD8"/>
    <!-- Eyes -->
    <circle cx="147" cy="78" r="2" fill="#000"/>
    <circle cx="153" cy="78" r="2" fill="#000"/>
    <!-- Whiskers -->
    <line x1="140" y1="80" x2="135" y2="80" stroke="#000" stroke-width="1"/>
    <line x1="140" y1="82" x2="135" y2="85" stroke="#000" stroke-width="1"/>
    <line x1="140" y1="78" x2="135" y2="75" stroke="#000" stroke-width="1"/>
    <line x1="160" y1="80" x2="165" y2="80" stroke="#000" stroke-width="1"/>
    <line x1="160" y1="82" x2="165" y2="85" stroke="#000" stroke-width="1"/>
    <line x1="160" y1="78" x2="165" y2="75" stroke="#000" stroke-width="1"/>
    <!-- Ears -->
    <polygon points="145,72 147,75 145,75" fill="#D8BFD8"/>
    <polygon points="155,72 153,75 155,75" fill="#D8BFD8"/>
    <!-- Tail -->
    <path d="M 135 120 Q 130 130 140 135" stroke="#D8BFD8" stroke-width="3" fill="none"/>
    <!-- Top Hat -->
    <rect x="140" y="60" width="20" height="10" fill="#000"/>
    <rect x="138" y="50" width="24" height="10" fill="#000"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image is more visually appealing and technically polished, with clear and vibrant colors, smooth lines, and a whimsical setting, including clouds and stars.

    The depiction of the cat is charming and the top hat is a nice touch.

    Player 2's image, while creative, lacks the same level of detail and polish, making Player 1's submission more effective in executing 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
62
Player 2
30
Rectangles

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

Player 1
6
Player 2
3
Circles

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

Player 1
17
Player 2
4
Ellipses

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

Player 1
13
Player 2
1
Lines

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

Player 1
14
Player 2
12
Polygons

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

Player 1
4
Player 2
2
Paths

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

Player 1
8
Player 2
8
Groups

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

Player 1
3
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
1
Patterns

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

Player 1
1
Player 2
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
17
Player 2
21

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
14

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

Complexity Metrics

Path Commands

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

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