Back

SVG Drawing Match #1711

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat in a comet sipping tea through a straw"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cometTail" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff6b6b;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4ecdc4;stop-opacity:0" />
    </linearGradient>
    <radialGradient id="teaGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#f9d423;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#f9d423;stop-opacity:0" />
    </radialGradient>
  </defs>
  
  <!-- Comet tail -->
  <path d="M20,150 Q150,50 280,150" fill="none" stroke="url(#cometTail)" stroke-width="40" stroke-linecap="round" />
  
  <!-- Comet body -->
  <circle cx="240" cy="150" r="40" fill="#e8e8e8" />
  
  <!-- Cat -->
  <g transform="translate(210,130) rotate(15)">
    <path d="M0,0 Q20,-15 40,0 Q60,-15 80,0" fill="none" stroke="#333" stroke-width="3"/>
    <circle cx="20" cy="10" r="18" fill="#444"/>
    <circle cx="60" cy="10" r="18" fill="#444"/>
    <ellipse cx="40" cy="20" rx="35" ry="30" fill="#444"/>
    <path d="M25,-5 L35,-15 L45,-5" fill="none" stroke="#333" stroke-width="2"/>
    <circle cx="15" cy="5" r="3" fill="#fff"/>
    <circle cx="55" cy="5" r="3" fill="#fff"/>
    <path d="M35,15 Q40,20 45,15" fill="none" stroke="#fff" stroke-width="2"/>
  </g>
  
  <!-- Tea cup -->
  <circle cx="160" cy="160" r="15" fill="#f9d423" opacity="0.6"/>
  <circle cx="160" cy="160" r="25" fill="none" stroke="#fff" stroke-width="3"/>
  
  <!-- Straw -->
  <path d="M160,160 Q180,140 190,160" fill="none" stroke="#ff6b6b" stroke-width="4"/>
  <circle cx="160" cy="160" r="20" fill="url(#teaGlow)"/>
  
  <!-- Stars -->
  <g fill="#fff">
    <circle cx="50" cy="50" r="2"/>
    <circle cx="80" cy="80" r="1"/>
    <circle cx="120" cy="40" r="2"/>
    <circle cx="200" cy="60" r="1"/>
    <circle cx="240" cy="90" r="2"/>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Comet Background -->
  <radialGradient id="comet-grad" cx="50%" cy="50%" r="50%" gradientUnits="userSpaceOnUse">
    <stop offset="0%" stop-color="#FFC080"/>
    <stop offset="100%" stop-color="#F08080"/>
  </radialGradient>
  <ellipse cx="150" cy="150" rx="120" ry="80" fill="url(#comet-grad)"/>

  <!-- Cat -->
  <path d="M110 140 L 125 120 L 127 140 L 120 150" stroke="#000" fill="#F7DC6F" />
  <circle cx="130" cy="130" r="15" fill="#282828" />
  <circle cx="120" cy="130" r="5" fill="#282828" />
  <path d="M130 150 C 145 160 155 150 160 145 L 155 120 L 175 125" stroke="#000" fill="#F7DC6F" />

  <!-- Tea -->
  <path d="M100 230 L 120 200 L 140 230" stroke="#000" fill="#	ffc0cb" />
  <circle cx="120" cy="220" r="5" fill="#282828" />

  <!-- Straw -->
  <path d="M80 220 L 140 190 L 120 210 L 90 200" stroke="#000" fill="#C9DCB9" />
  <circle cx="120" cy="200" r="2" fill="#282828" />

  <!-- Steam -->
  <path d="M110 190 C 115 185 115 185 110 190" stroke="#000" fill="#fff" opacity="0.5" />
  <path d="M130 190 C 130 185 125 185 123 190" stroke="#000" fill="#fff" opacity="0.5" />

  <!-- Tea Particles -->
  <circle cx="120" cy="245" r="2" fill="#282828" opacity="0.2" />
  <circle cx="125" cy="240" r="2" fill="#282828" opacity="0.2" />
  <circle cx="115" cy="240" r="2" fill="#282828" opacity="0.2" />

  <!-- Star -->
  <path d="M60 120 L 55 130 L 70 130 L 80 150 L 60 140 Z" fill="#FFD700" stroke="#000" />
  <path d="M240 170 L 250 150 L 235 160 L 255 180 L 245 170 Z" fill="#FFD700" stroke="#000" />
  <path d="M50 90 L 60 60 L 50 70 L 60 90 L 50 80 Z" fill="#FFD700" stroke="#000" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image creatively incorporates the cat within the comet, effectively using a gradient to depict motion.

    The cat's expression and the inclusion of a straw sipping action are clear and visually appealing.

    Player 2's image, while abstract, lacks clarity in depicting the prompt's elements, particularly the 'cat sipping tea' aspect.

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
17
Rectangles

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

Player 1
Player 2
Circles

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

Player 1
13
Player 2
7
Ellipses

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

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

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
8

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
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
12
Player 2
37
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
2
Player 2
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