Back

SVG Drawing Match #1423

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two cats fencing with paintbrushes atop a floating book"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#FFC67D" />
      <stop offset="100%" stop-color="#FF99CC" />
    </linearGradient>
    <linearGradient id="grad2" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB" />
      <stop offset="100%" stop-color="#4682B4" />
    </linearGradient>
    <pattern id="polka" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#FFFFFF" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad1)" rx="20" />
  <g transform="translate(150 100)">
    <rect x="-50" y="-20" width="100" height="10" fill="url(#grad2)" rx="5" />
    <rect x="-50" y="10" width="100" height="10" fill="url(#grad2)" rx="5" />
    <g transform="translate(-40 0)">
      <path d="M0 0 L-20 30 L-10 50 L10 50 L20 30 Z" fill="#FFFFFF" stroke="#000000" stroke-width="2" />
      <path d="M-10 50 L-20 70 L-10 90 L0 90 L10 90 L20 70 L10 50 Z" fill="#FFFFFF" stroke="#000000" stroke-width="2" />
      <circle cx="0" cy="90" r="10" fill="#FFFFFF" stroke="#000000" stroke-width="2" />
      <path d="M-20 30 L-30 50 L-20 70 L-10 70 L0 50 L10 70 L20 70 L30 50 L20 30 Z" fill="url(#polka)" stroke="#000000" stroke-width="2" />
    </g>
    <g transform="translate(40 0)">
      <path d="M0 0 L20 30 L10 50 L-10 50 L-20 30 Z" fill="#FFFFFF" stroke="#000000" stroke-width="2" />
      <path d="M10 50 L20 70 L10 90 L0 90 L-10 90 L-20 70 L-10 50 Z" fill="#FFFFFF" stroke="#000000" stroke-width="2" />
      <circle cx="0" cy="90" r="10" fill="#FFFFFF" stroke="#000000" stroke-width="2" />
      <path d="M20 30 L30 50 L20 70 L10 70 L0 50 L-10 70 L-20 70 L-30 50 L-20 30 Z" fill="url(#polka)" stroke="#000000" stroke-width="2" />
    </g>
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#ffecd2"/>
      <stop offset="100%" stop-color="#fcb69f"/>
    </linearGradient>
    <linearGradient id="bookGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#6B8E23"/>
      <stop offset="100%" stop-color="#556B2F"/>
    </linearGradient>
    <radialGradient id="glowGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="rgba(255, 255, 255, 0.8)"/>
      <stop offset="100%" stop-color="rgba(255, 255, 255, 0)"/>
    </radialGradient>
    <linearGradient id="cat1Gradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </linearGradient>
    <linearGradient id="cat2Gradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#1E90FF"/>
      <stop offset="100%" stop-color="#00BFFF"/>
    </linearGradient>
    <linearGradient id="brushGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="100%" stop-color="#AAAAAA"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />

  <!-- Floating Book -->
  <g transform="translate(50,180)">
    <rect width="200" height="40" rx="5" ry="5" fill="url(#bookGradient)" />
    <path d="M0,10 h200" stroke="#8B4513" stroke-width="2"/>
    <path d="M0,30 h200" stroke="#8B4513" stroke-width="2"/>
    <!-- Glow -->
    <circle cx="100" cy="50" r="50" fill="url(#glowGradient)" />
  </g>

  <!-- Cat 1 -->
  <g transform="translate(80,130)">
    <circle cx="20" cy="20" r="20" fill="url(#cat1Gradient)" />
    <polygon points="10,10 5,25 15,20" fill="#000" />
    <rect x="18" y="10" width="4" height="20" fill="url(#brushGradient)" transform="rotate(-30 20,20)" />
  </g>

  <!-- Cat 2 -->
  <g transform="translate(180,130)">
    <circle cx="20" cy="20" r="20" fill="url(#cat2Gradient)" />
    <polygon points="30,10 35,25 25,20" fill="#000" />
    <rect x="18" y="10" width="4" height="20" fill="url(#brushGradient)" transform="rotate(30 20,20)" />
  </g>

  <!-- Paintbrush Details -->
  <g transform="translate(80,130)">
    <line x1="22" y1="30" x2="22" y2="50" stroke="#654321" stroke-width="2" />
    <circle cx="22" cy="50" r="4" fill="#8B4513" />
  </g>
  <g transform="translate(180,130)">
    <line x1="22" y1="30" x2="22" y2="50" stroke="#654321" stroke-width="2" />
    <circle cx="22" cy="50" r="4" fill="#8B4513" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image more effectively captures the concept of 'cats fencing with paintbrushes atop a floating book.' The depiction of the book is clear, and the circular elements with paintbrushes suggest a playful duel.

    Player 1's submission, while creative, lacks clarity in representing the prompt's elements such as the cats and the book.

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

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

Player 1
3
Player 2
4
Circles

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

Player 1
3
Player 2
5
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
Player 2
2
Polygons

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

Player 1
Player 2
2
Paths

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

Player 1
6
Player 2
2
Groups

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

Player 1
3
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
15

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
3
Player 2
7

Complexity Metrics

Path Commands

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

Player 1
48
Player 2
4
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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