Back

SVG Drawing Match #855

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat-shaped island with a lighthouse as its tail"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background - Ocean -->
  <rect x="0" y="0" width="300" height="300" fill="#00bfff" />
  
  <!-- Cat-shaped Island Body -->
  <circle cx="150" cy="200" r="100" fill="#a0522d" />
  
  <!-- Cat Ears -->
  <path d="M120,130 L80,80 L35,120 Z" fill="#a0522d" />
  <path d="M180,130 L220,80 L265,120 Z" fill="#a0522d" />
  
  <!-- Cat-shaped Island's Face -->
  <circle cx="150" cy="150" r="50" fill="#ffd700" />
  <circle cx="130" cy="140" r="10" fill="#000" />
  <circle cx="170" cy="140" r="10" fill="#000" />
  <path d="M150,160 Q140,170 130,160 Q135,150 150,160 Q165,150 170,160 Q160,170 150,160" fill="#fff" />
  
  <!-- Lighthouse Tail -->
  <rect x="145" y="200" width="10" height="100" fill="#e74c3c" />
  <polygon points="150,300 140,220 160,220" fill="#e74c3c" />
  <circle cx="150" cy="220" r="10" fill="#f1c40f" />
</svg>
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="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a4b8c"/>
      <stop offset="100%" style="stop-color:#62b7ff"/>
    </linearGradient>
    <radialGradient id="waterGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" style="stop-color:#2d95e5"/>
      <stop offset="100%" style="stop-color:#0a2d4a"/>
    </radialGradient>
    <pattern id="waves" width="30" height="10" patternUnits="userSpaceOnUse">
      <path d="M0 5 Q7.5 0, 15 5 Q22.5 10, 30 5" fill="none" stroke="#4ba3e9" stroke-width="1"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGrad)"/>
  <rect x="0" y="150" width="300" height="150" fill="url(#waterGrad)"/>
  <rect x="0" y="150" width="300" height="150" fill="url(#waves)" opacity="0.3"/>

  <!-- Island/Cat Body -->
  <path d="M100 180 Q150 160, 200 180 Q220 182, 240 190 L220 200 Q190 190, 150 190 Q110 190, 80 200 Z" fill="#f4d03f"/>
  <path d="M80 200 Q150 210, 220 200 L240 190 Q260 195, 270 210 L250 220 Q200 210, 150 215 Q100 220, 50 210 Z" fill="#d4b130"/>

  <!-- Cat Ears -->
  <path d="M130 160 L150 140 L170 160 Q150 155, 130 160 Z" fill="#f4d03f"/>
  <path d="M170 160 L190 140 L210 160 Q190 155, 170 160 Z" fill="#f4d03f"/>

  <!-- Lighthouse -->
  <path d="M250 220 L270 120 L290 120 L270 220 Z" fill="white"/>
  <path d="M260 120 h40 l-5 -20 h-30 Z" fill="#e74c3c"/>
  <rect x="265" y="130" width="10" height="80" fill="#e74c3c"/>
  <rect x="265" y="160" width="10" height="10" fill="#f1c40f"/>

  <!-- Light Beam -->
  <path d="M275 165 L340 140 L340 190 L275 165" fill="#f1c40f" opacity="0.3"/>

  <!-- Trees -->
  <circle cx="120" cy="185" r="10" fill="#27ae60"/>
  <circle cx="180" cy="185" r="12" fill="#27ae60"/>
  <circle cx="150" cy="180" r="8" fill="#27ae60"/>

  <!-- Clouds -->
  <circle cx="50" cy="60" r="20" fill="white" opacity="0.7"/>
  <circle cx="70" cy="50" r="25" fill="white" opacity="0.7"/>
  <circle cx="90" cy="60" r="20" fill="white" opacity="0.7"/>
  
  <circle cx="220" cy="40" r="15" fill="white" opacity="0.7"/>
  <circle cx="240" cy="35" r="20" fill="white" opacity="0.7"/>
  <circle cx="260" cy="40" r="15" fill="white" opacity="0.7"/>
</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 submission creatively integrates the concept of a cat-shaped island with a lighthouse as its tail, using distinct shapes and colors to convey the theme.

    The image effectively captures the idea with a clear depiction of the lighthouse and island elements.

    Player 1's image, while colorful, lacks clarity in representing the theme and doesn't visually communicate the prompt as effectively.

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
11
Player 2
22
Rectangles

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

Player 1
2
Player 2
5
Circles

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

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

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

Player 1
1
Player 2
Paths

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
7

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

Complexity Metrics

Path Commands

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

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