Back

SVG Drawing Match #101

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock shaped like a cat, with its tail as the pendulum"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cat body -->
  <ellipse cx="150" cy="120" rx="80" ry="60" fill="#F7D2C4" />
  <ellipse cx="150" cy="120" rx="70" ry="50" fill="#FFC107" />
  <ellipse cx="150" cy="120" rx="60" ry="40" fill="#FFA07A" />
  
  <!-- Whiskers -->
  <line x1="120" y1="90" x2="140" y2="70" stroke="#FFFFFF" stroke-width="2" />
  <line x1="160" y1="90" x2="180" y2="70" stroke="#FFFFFF" stroke-width="2" />
  <line x1="120" y1="150" x2="140" y2="170" stroke="#FFFFFF" stroke-width="2" />
  <line x1="160" y1="150" x2="180" y2="170" stroke="#FFFFFF" stroke-width="2" />
  
  <!-- Eyes and nose -->
  <circle cx="130" cy="100" r="5" fill="#000000" />
  <circle cx="170" cy="100" r="5" fill="#000000" />
  <circle cx="150" cy="110" r="2" fill="#000000" />
  
  <!-- Clock face -->
  <circle cx="150" cy="120" r="40" fill="#FFFFFF" />
  <circle cx="150" cy="120" r="35" fill="none" stroke="#000000" stroke-width="2" />
  
  <!-- Hour marks -->
  <line x1="150" y1="85" x2="150" y2="75" stroke="#000000" stroke-width="2" />
  <line x1="165" y1="90" x2="175" y2="80" stroke="#000000" stroke-width="2" />
  <line x1="180" y1="95" x2="190" y2="85" stroke="#000000" stroke-width="2" />
  <line x1="195" y1="100" x2="205" y2="90" stroke="#000000" stroke-width="2" />
  <line x1="210" y1="105" x2="220" y2="95" stroke="#000000" stroke-width="2" />
  <line x1="225" y1="110" x2="235" y2="100" stroke="#000000" stroke-width="2" />
  <line x1="240" y1="115" x2="250" y2="105" stroke="#000000" stroke-width="2" />
  <line x1="255" y1="120" x2="265" y2="110" stroke="#000000" stroke-width="2" />
  
  <!-- Pendulum tail -->
  <path d="M 150 180 C 150 200, 120 220, 100 240" stroke="#FFC107" stroke-width="4" fill="none" />
  <path d="M 100 240 C 80 260, 60 280, 50 300" stroke="#FFC107" stroke-width="4" fill="none" />
  <circle cx="50" cy="300" r="10" fill="#FFC107" />
  
  <!-- Shadow -->
  <ellipse cx="150" cy="140" rx="80" ry="60" fill="#A0522D" opacity="0.5" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Cat Clock Main Body -->
  <ellipse cx="150" cy="150" rx="80" ry="100" fill="url(#grad1)" stroke="#333" stroke-width="2"/>
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Cat Face Details -->
  <ellipse cx="140" cy="120" rx="15" ry="20" fill="white"/>
  <ellipse cx="160" cy="120" rx="15" ry="20" fill="white"/>
  <path d="M140,120 L140,100 L160,100 L160,120 Z" fill="none" stroke="black"/>
  <circle cx="145" cy="110" r="8" fill="black"/>
  <circle cx="155" cy="110" r="8" fill="black"/>
  <path d="M150,130 Q150,140 160,145 L160,135 Q150,140 150,130" fill="pink"/>
  <path d="M150,130 Q150,140 140,145 L140,135 Q150,140 150,130" fill="pink"/>

  <!-- Whiskers -->
  <path d="M140,110 L130,110" stroke="white" stroke-width="2"/>
  <path d="M140,120 L130,120" stroke="white" stroke-width="2"/>
  <path d="M140,130 L130,130" stroke="white" stroke-width="2"/>
  <path d="M160,110 L170,110" stroke="white" stroke-width="2"/>
  <path d="M160,120 L170,120" stroke="white" stroke-width="2"/>
  <path d="M160,130 L170,130" stroke="white" stroke-width="2"/>

  <!-- Clock Hands -->
  <line x1="150" y1="150" x2="150" y2="100" stroke="#333" stroke-width="4"/>
  <line x1="150" y1="150" x2="200" y2="150" stroke="#333" stroke-width="4"/>
  <line x1="150" y1="150" x2="100" y2="150" stroke="#333" stroke-width="4"/>
  <line x1="150" y1="150" x2="150" y2="200" stroke="#333" stroke-width="4"/>

  <!-- Pendulum Tail -->
  <path d="M150,200 Q200,220 150,250" fill="none" stroke="url(#grad1)" stroke-width="8">
    <animateTransform
      attributeName="transform"
      type="rotate"
      from="0 150 150"
      to="180 150 150"
      dur="3s"
      repeatCount="indefinite"
      additive="sum"
    />
  </path>

  <!-- Hour Markers -->
  <circle cx="150" cy="80" r="5" fill="#333"/>
  <circle cx="120" cy="120" r="5" fill="#333"/>
  <circle cx="180" cy="120" r="5" fill="#333"/>
  <circle cx="150" cy="170" r="5" fill="#333"/>
  <circle cx="100" cy="150" r="5" fill="#333"/>
  <circle cx="200" cy="150" r="5" fill="#333"/>

  <!-- Legs/Stand -->
  <ellipse cx="100" cy="250" rx="20" ry="30" fill="url(#grad2)"/>
  <ellipse cx="200" cy="250" rx="20" ry="30" fill="url(#grad2)"/>

  <!-- Shadow -->
  <ellipse cx="150" cy="280" rx="100" ry="50" fill="#666" opacity="0.3" blur="10px"/>
</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 more closely adheres to the prompt, depicting a clock that resembles a cat with a clear tail used as the pendulum.

    The composition is visually appealing and creatively integrates the cat shape with the clock elements.

    Player 1's submission lacks a clear representation of a cat, making it less effective in fulfilling 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
24
Player 2
28
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
6
Player 2
8
Ellipses

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

Player 1
4
Player 2
6
Lines

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
15
Player 2
13

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
5

Interactivity Metrics

Animations

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

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