Back

SVG Drawing Match #5

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock-faced cat juggling planets in zero gravity"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#galaxy)"/>
  <defs>
    <radialGradient id="galaxy" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#2F4F7F"/>
      <stop offset="0.5" stop-color="#1A1D23"/>
      <stop offset="1" stop-color="#0A0E14"/>
    </radialGradient>
  </defs>

  <!-- Clock Face -->
  <circle cx="150" cy="150" r="70" fill="#F7F7F7" stroke="#333" stroke-width="5"/>
  <circle cx="150" cy="150" r="60" fill="none" stroke="#333" stroke-width="2"/>
  <circle cx="150" cy="150" r="50" fill="none" stroke="#333" stroke-width="1"/>
  <text x="150" y="140" font-size="24" font-family="Arial" text-anchor="middle" fill="#333">12</text>
  <text x="220" y="170" font-size="18" font-family="Arial" text-anchor="middle" fill="#333">3</text>
  <text x="260" y="220" font-size="18" font-family="Arial" text-anchor="middle" fill="#333">6</text>
  <text x="180" y="260" font-size="18" font-family="Arial" text-anchor="middle" fill="#333">9</text>

  <!-- Cat Face -->
  <circle cx="150" cy="120" r="20" fill="#FFC080" stroke="#333" stroke-width="2"/>
  <circle cx="140" cy="110" r="5" fill="#333"/>
  <circle cx="160" cy="110" r="5" fill="#333"/>
  <path d="M140 120 C140 130 150 130 150 120" stroke="#333" stroke-width="2" fill="none"/>
  <path d="M160 120 C160 130 150 130 150 120" stroke="#333" stroke-width="2" fill="none"/>

  <!-- Planets -->
  <circle cx="100" cy="200" r="15" fill="#87CEEB" stroke="#333" stroke-width="2"/>
  <circle cx="200" cy="200" r="15" fill="#FFA07A" stroke="#333" stroke-width="2"/>
  <circle cx="150" cy="250" r="20" fill="#32CD32" stroke="#333" stroke-width="2"/>

  <!-- Juggling Lines -->
  <path d="M150 120 C150 150 100 180 100 200" stroke="#333" stroke-width="2" fill="none"/>
  <path d="M150 120 C150 150 200 180 200 200" stroke="#333" stroke-width="2" fill="none"/>
  <path d="M150 120 C150 150 150 220 150 250" stroke="#333" stroke-width="2" fill="none"/>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <radialGradient id="clockFaceGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff8e1"/>
      <stop offset="100%" stop-color="#ffab00"/>
    </radialGradient>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#81d4fa"/>
      <stop offset="100%" stop-color="#01579b"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff8a80"/>
      <stop offset="100%" stop-color="#c62828"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#b9f6ca"/>
      <stop offset="100%" stop-color="#00c853"/>
    </radialGradient>
    <pattern id="furPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="2" r="1" fill="black" opacity="0.1"/>
    </pattern>
  </defs>
  
  <!-- Background: clock face -->
  <circle cx="150" cy="150" r="140" fill="url(#clockFaceGradient)" stroke="#8d6e63" stroke-width="4"/>
  
  <!-- Clock marks -->
  <g stroke="#6d4c41" stroke-width="2">
    <line x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(30 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(60 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(90 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(120 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(150 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(180 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(210 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(240 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(270 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(300 150 150)" x1="150" y1="15" x2="150" y2="30"/>
    <line transform="rotate(330 150 150)" x1="150" y1="15" x2="150" y2="30"/>
  </g>
  
  <!-- Cat face (clock-faced cat) in the center -->
  <g id="cat">
    <!-- Cat head outline: circular face -->
    <circle cx="150" cy="150" r="60" fill="#ffe0b2" stroke="#bf8f68" stroke-width="3" />
    <!-- Fur pattern overlay -->
    <circle cx="150" cy="150" r="60" fill="url(#furPattern)" opacity="0.4"/>
    <!-- Eyes -->
    <ellipse cx="135" cy="140" rx="8" ry="12" fill="#000"/>
    <ellipse cx="165" cy="140" rx="8" ry="12" fill="#000"/>
    <!-- Nose -->
    <polygon points="150,150 144,158 156,158" fill="#d32f2f"/>
    <!-- Whiskers -->
    <g stroke="#5d4037" stroke-width="1">
      <line x1="120" y1="150" x2="90" y2="145"/>
      <line x1="120" y1="155" x2="90" y2="155"/>
      <line x1="120" y1="160" x2="90" y2="165"/>
      <line x1="180" y1="150" x2="210" y2="145"/>
      <line x1="180" y1="155" x2="210" y2="155"/>
      <line x1="180" y1="160" x2="210" y2="165"/>
    </g>
    <!-- Clock hands on cat's face (for artistic inner detail) -->
    <line x1="150" y1="150" x2="150" y2="110" stroke="#bf360c" stroke-width="3" stroke-linecap="round"/>
    <line x1="150" y1="150" x2="180" y2="150" stroke="#bf360c" stroke-width="3" stroke-linecap="round"/>
  </g>
  
  <!-- Cat ears -->
  <polygon points="110,90 130,50 150,90" fill="#ffe0b2" stroke="#bf8f68" stroke-width="3"/>
  <polygon points="190,90 170,50 150,90" fill="#ffe0b2" stroke="#bf8f68" stroke-width="3"/>
  
  <!-- Planets being juggled: orbit paths for visual metaphor -->
  <g id="planets" stroke="none">
    <!-- Planet 1 -->
    <circle cx="90" cy="50" r="15" fill="url(#planet1)"/>
    <circle cx="90" cy="50" r="4" fill="#fff"/>
    <!-- Planet 2 -->
    <circle cx="220" cy="40" r="12" fill="url(#planet2)"/>
    <circle cx="220" cy="40" r="3" fill="#fff"/>
    <!-- Planet 3 -->
    <circle cx="250" cy="190" r="18" fill="url(#planet3)"/>
    <circle cx="250" cy="190" r="5" fill="#fff"/>
  </g>
  
  <!-- Cat limbs as juggling arms (streched out) -->
  <g id="arms" stroke="#ffe0b2" stroke-width="8" stroke-linecap="round">
    <!-- Left arm -->
    <path d="M125,135 C90,100 75,70 90,50" fill="none" />
    <!-- Right arm -->
    <path d="M175,135 C210,100 225,70 220,40" fill="none" />
    <!-- Lower arm for third planet -->
    <path d="M160,170 C180,190 220,210 250,190" fill="none" />
  </g>
  
  <!-- Zero gravity effect: dotted trails -->
  <g stroke="#424242" stroke-width="1" stroke-dasharray="2,2">
    <path d="M90,50 q20,10 40,5" fill="none"/>
    <path d="M220,40 q-20,15 -30,10" fill="none"/>
    <path d="M250,190 q-30,-15 -50,-10" fill="none"/>
  </g>
  
  <!-- Subtle stars as background details -->
  <g fill="#ffffff">
    <circle cx="40" cy="40" r="1.5"/>
    <circle cx="260" cy="30" r="1"/>
    <circle cx="280" cy="80" r="1.2"/>
    <circle cx="30" cy="260" r="1.3"/>
    <circle cx="270" cy="250" r="1.1"/>
    <circle cx="210" cy="270" r="1.4"/>
  </g>
</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 image creatively integrates the clock face and cat features, with clear depiction of planets being juggled.

    The design is visually appealing with vibrant colors and a playful composition that closely adheres to the prompt.

    Player 1's submission, while minimalistic, lacks the distinct features of a cat and the dynamic juggling of planets, making Player 2's image more compelling overall.

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
15
Player 2
47
Rectangles

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

Player 1
1
Player 2
Circles

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

Player 1
9
Player 2
16
Ellipses

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

Player 1
Player 2
2
Lines

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

Player 1
Player 2
20
Polygons

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

Player 1
Player 2
3
Paths

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

Player 1
5
Player 2
6
Groups

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

Player 1
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
21

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
11

Complexity Metrics

Path Commands

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

Player 1
10
Player 2
12
Max Group Nesting

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

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