Back

SVG Drawing Match #2192

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Pirate cat on a unicycle juggling starfish"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="sky" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#87CEEB" />
      <stop offset="1" stop-color="#4682B4" />
    </linearGradient>
    <linearGradient id="fur" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#F7D2C4" />
      <stop offset="1" stop-color="#FFC499" />
    </linearGradient>
    <radialGradient id="starfish" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0" stop-color="#FFD700" />
      <stop offset="1" stop-color="#FFC107" />
    </radialGradient>
    <pattern id="wood" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect x="0" y="0" width="10" height="10" fill="#964B00" rx="1" />
      <line x1="0" y1="0" x2="10" y2="10" stroke="#663300" stroke-width="0.5" />
      <line x1="0" y1="10" x2="10" y2="0" stroke="#663300" stroke-width="0.5" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)" rx="20" />
  <circle cx="150" cy="50" r="20" fill="url(#fur)" />
  <circle cx="150" cy="50" r="15" fill="#FFFFFF" />
  <circle cx="150" cy="50" r="10" fill="url(#fur)" />
  <path d="M150,70 C150,90 170,90 170,70 L170,50 L150,50 Z" fill="url(#fur)" />
  <path d="M150,70 C150,90 130,90 130,70 L130,50 L150,50 Z" fill="url(#fur)" />
  <circle cx="150" cy="120" r="5" fill="#000000" />
  <circle cx="150" cy="120" r="2" fill="#FFFFFF" />
  <rect x="130" y="140" width="40" height="10" fill="url(#wood)" rx="2" />
  <circle cx="140" cy="150" r="5" fill="#000000" />
  <circle cx="160" cy="150" r="5" fill="#000000" />
  <circle cx="150" cy="160" r="10" fill="url(#starfish)" />
  <circle cx="150" cy="170" r="10" fill="url(#starfish)" />
  <circle cx="150" cy="180" r="10" fill="url(#starfish)" />
  <path d="M140,150 C140,170 150,170 150,150 Z" stroke="#000000" stroke-width="2" fill="none" />
  <path d="M160,150 C160,170 150,170 150,150 Z" stroke="#000000" stroke-width="2" fill="none" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:yellow;stop-opacity:1" />
      <stop offset="100%" style="stop-color:orange;stop-opacity:0" />
    </radialGradient>
    <pattern id="stripes" patternUnits="userSpaceOnUse" width="10" height="10" patternTransform="rotate(45)">
      <rect width="5" height="10" fill="#d63031" />
      <rect x="5" width="5" height="10" fill="#ff7675" />
    </pattern>
  </defs>

  <!-- Unicycle wheel -->
  <circle cx="150" cy="250" r="40" fill="none" stroke="#2d3436" stroke-width="8"/>
  <circle cx="150" cy="250" r="5" fill="#2d3436"/>
  <circle cx="150" cy="250" r="30" fill="none" stroke="#2d3436" stroke-width="2" stroke-dasharray="5,5"/>

  <!-- Unicycle seat and post -->
  <rect x="145" y="160" width="10" height="90" fill="#636e72"/>
  <ellipse cx="150" cy="160" rx="25" ry="10" fill="#2d3436"/>

  <!-- Cat body -->
  <ellipse cx="150" cy="120" rx="40" ry="35" fill="#636e72"/>
  <circle cx="150" cy="90" r="30" fill="#636e72"/>

  <!-- Cat face features -->
  <circle cx="140" cy="85" r="5" fill="white"/>
  <circle cx="160" cy="85" r="5" fill="white"/>
  <circle cx="142" cy="85" r="2" fill="black"/>
  <circle cx="162" cy="85" r="2" fill="black"/>
  <path d="M145,95 Q150,100 155,95" fill="none" stroke="black" stroke-width="2"/>
  <path d="M130,80 Q140,70 150,75" fill="none" stroke="#2d3436" stroke-width="3"/>
  <path d="M170,80 Q160,70 150,75" fill="none" stroke="#2d3436" stroke-width="3"/>

  <!-- Pirate elements -->
  <path d="M120,60 Q150,50 180,60 L170,80 Q150,70 130,80 Z" fill="pattern(#stripes)"/>
  <circle cx="135" cy="75" r="8" fill="gold"/>
  <rect x="165" cy="75" width="10" height="15" fill="black"/>

  <!-- Juggling starfish -->
  <g transform="rotate(-30 100 100)">
    <path d="M80,60 L95,75 L80,90 L65,75 Z" fill="url(#starGlow)" class="star">
      <animateTransform attributeName="transform" type="rotate" from="0 80 75" to="360 80 75" dur="2s" repeatCount="indefinite"/>
    </path>
  </g>
  <g transform="rotate(10 150 100)">
    <path d="M150,40 L165,55 L150,70 L135,55 Z" fill="url(#starGlow)" class="star">
      <animateTransform attributeName="transform" type="rotate" from="0 150 55" to="360 150 55" dur="2s" repeatCount="indefinite"/>
    </path>
  </g>
  <g transform="rotate(45 200 100)">
    <path d="M220,60 L235,75 L220,90 L205,75 Z" fill="url(#starGlow)" class="star">
      <animateTransform attributeName="transform" type="rotate" from="0 220 75" to="360 220 75" dur="2s" repeatCount="indefinite"/>
    </path>
  </g>

  <!-- Cat arms -->
  <path d="M110,120 Q130,100 150,120" fill="none" stroke="#636e72" stroke-width="8" stroke-linecap="round"/>
  <path d="M190,120 Q170,100 150,120" fill="none" stroke="#636e72" stroke-width="8" stroke-linecap="round"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image clearly depicts a cat on a unicycle juggling starfish, adhering closely to the prompt with a strong visual appeal.

    The composition is clear, and the elements are well-defined and harmonious.

    Player 1's image lacks clarity and does not effectively convey the theme of a pirate cat juggling starfish on a unicycle.

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
24
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
10
Player 2
9
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
2
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
4
Player 2
9
Groups

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
7

Interactivity Metrics

Animations

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

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
3

Complexity Metrics

Path Commands

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

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