Back

SVG Drawing Match #1958

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Moonlit cat orchestra on a floating lily pad"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background & Stars -->
  <defs>
    <radialGradient id="nightSky" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#0B0B40" />
      <stop offset="100%" stop-color="#000025" />
    </radialGradient>
    <radialGradient id="moonGlow" cx="70%" cy="30%" r="30%" fx="70%" fy="30%">
      <stop offset="0%" stop-color="#F9FFBC" stop-opacity="0.4" />
      <stop offset="100%" stop-color="#F9FFBC" stop-opacity="0" />
    </radialGradient>
    <filter id="waterRipple" x="-20%" y="-20%" width="140%" height="140%">
      <feTurbulence baseFrequency="0.01" numOctaves="2" result="turbulence" />
      <feDisplacementMap in="SourceGraphic" in2="turbulence" scale="5" />
    </filter>
    <linearGradient id="lilyPadGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0D6E37" />
      <stop offset="100%" stop-color="#094223" />
    </linearGradient>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0E1A40" />
      <stop offset="100%" stop-color="#0F3668" />
    </linearGradient>
    <filter id="glow" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="4" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
  </defs>

  <!-- Night sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#nightSky)" />
  
  <!-- Moon glow effect -->
  <circle cx="220" cy="50" r="80" fill="url(#moonGlow)" />
  
  <!-- Moon -->
  <circle cx="220" cy="50" r="30" fill="#FFFCE8" />
  <circle cx="210" cy="40" r="8" fill="#E0DED0" opacity="0.7" />
  <circle cx="230" cy="60" r="5" fill="#E0DED0" opacity="0.7" />
  
  <!-- Stars -->
  <g fill="#FFFFFF">
    <circle cx="30" cy="40" r="1.5" />
    <circle cx="60" cy="70" r="1" />
    <circle cx="100" cy="30" r="1.3" />
    <circle cx="150" cy="50" r="0.8" />
    <circle cx="190" cy="90" r="1.2" />
    <circle cx="250" cy="130" r="1" />
    <circle cx="40" cy="130" r="1.3" />
    <circle cx="80" cy="180" r="0.9" />
    <circle cx="280" cy="40" r="1.1" />
    <circle cx="20" cy="200" r="1" />
    <circle cx="270" cy="190" r="1.2" />
  </g>
  
  <!-- Water surface -->
  <rect x="0" y="180" width="300" height="120" fill="url(#waterGradient)" />
  
  <!-- Floating lily pad -->
  <ellipse cx="150" cy="200" rx="100" ry="40" fill="url(#lilyPadGradient)" filter="url(#waterRipple)" />
  <ellipse cx="150" cy="198" rx="90" ry="35" fill="url(#lilyPadGradient)" opacity="0.7" />
  
  <!-- Lily pad flower -->
  <circle cx="220" cy="190" r="10" fill="#FFAADE" />
  <circle cx="220" cy="190" r="7" fill="#FF80C9" />
  <circle cx="220" cy="190" r="4" fill="#FFEC85" />
  
  <!-- Orchestra cats -->
  <!-- Conductor cat -->
  <g transform="translate(150, 190)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="12" ry="10" fill="#333" />
    <!-- Head -->
    <circle cx="0" cy="-13" r="9" fill="#333" />
    <!-- Ears -->
    <path d="M-6,-18 L-9,-24 L-3,-20 Z" fill="#333" />
    <path d="M6,-18 L9,-24 L3,-20 Z" fill="#333" />
    <!-- Eyes -->
    <circle cx="-3" cy="-14" r="1.5" fill="#FFEC85" />
    <circle cx="3" cy="-14" r="1.5" fill="#FFEC85" />
    <!-- Mouth -->
    <path d="M-2,-10 C-1,-9 1,-9 2,-10" stroke="#FFEC85" stroke-width="0.5" fill="none" />
    <!-- Tail -->
    <path d="M-12,0 C-20,5 -20,10 -15,12" stroke="#333" stroke-width="4" fill="none" />
    <!-- Baton -->
    <line x1="6" y1="-5" x2="14" y2="-12" stroke="#EEE" stroke-width="1" />
    <circle cx="15" cy="-13" r="1.5" fill="#EEE" />
  </g>
  
  <!-- Violin cat -->
  <g transform="translate(120, 185)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="10" ry="8" fill="#B36B00" />
    <!-- Head -->
    <circle cx="0" cy="-11" r="7" fill="#B36B00" />
    <!-- Ears -->
    <path d="M-5,-15 L-7,-20 L-2,-17 Z" fill="#B36B00" />
    <path d="M5,-15 L7,-20 L2,-17 Z" fill="#B36B00" />
    <!-- Eyes -->
    <circle cx="-2" cy="-12" r="1" fill="#FFEC85" />
    <circle cx="2" cy="-12" r="1" fill="#FFEC85" />
    <!-- Violin -->
    <path d="M-8,-5 Q-12,-3 -10,0 Q-12,3 -8,5" stroke="#8B4513" stroke-width="1" fill="#A0522D" />
    <line x1="-9" y1="-3" x2="-9" y2="3" stroke="#333" stroke-width="0.5" />
    <line x1="6" y1="-3" x2="-9" y2="-1" stroke="#333" stroke-width="0.5" />
    <line x1="6" y1="0" x2="-9" y2="0" stroke="#333" stroke-width="0.5" />
    <line x1="6" y1="3" x2="-9" y2="1" stroke="#333" stroke-width="0.5" />
    <path d="M6,-3 Q10,-2 10,0 Q10,2 6,3" stroke="#8B4513" stroke-width="1" fill="none" />
  </g>
  
  <!-- Cello cat -->
  <g transform="translate(180, 187)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="11" ry="9" fill="#EAEAEA" />
    <!-- Head -->
    <circle cx="0" cy="-12" r="8" fill="#EAEAEA" />
    <!-- Ears -->
    <path d="M-5,-16 L-8,-22 L-2,-18 Z" fill="#EAEAEA" />
    <path d="M5,-16 L8,-22 L2,-18 Z" fill="#EAEAEA" />
    <!-- Eyes -->
    <circle cx="-3" cy="-13" r="1.2" fill="#4F7CAC" />
    <circle cx="3" cy="-13" r="1.2" fill="#4F7CAC" />
    <!-- Cello -->
    <path d="M-2,2 Q-15,0 -2,-5" stroke="#8B4513" stroke-width="3" fill="#A0522D" />
    <line x1="-2" y1="-5" x2="-2" y2="7" stroke="#444" stroke-width="1" />
    <line x1="-4" y1="0" x2="2" y2="0" stroke="#444" stroke-width="0.5" />
    <line x1="-4" y1="3" x2="2" y2="3" stroke="#444" stroke-width="0.5" />
    <line x1="-4" y1="-3" x2="2" y2="-3" stroke="#444" stroke-width="0.5" />
  </g>
  
  <!-- Flute cat -->
  <g transform="translate(90, 182)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="9" ry="7" fill="#707070" />
    <!-- Head -->
    <circle cx="0" cy="-10" r="7" fill="#707070" />
    <!-- Ears -->
    <path d="M-4,-14 L-6,-19 L-1,-16 Z" fill="#707070" />
    <path d="M4,-14 L6,-19 L1,-16 Z" fill="#707070" />
    <!-- Eyes -->
    <circle cx="-2" cy="-11" r="1" fill="#FFF" />
    <circle cx="2" cy="-11" r="1" fill="#FFF" />
    <!-- Flute -->
    <line x1="-10" y1="-8" x2="10" y2="-8" stroke="#DDDDDD" stroke-width="1" />
    <circle cx="-8" cy="-8" r="1" fill="#DDDDDD" />
    <circle cx="-4" cy="-8" r="1" fill="#DDDDDD" />
    <circle cx="0" cy="-8" r="1" fill="#DDDDDD" />
    <circle cx="4" cy="-8" r="1" fill="#DDDDDD" />
    <circle cx="8" cy="-8" r="1" fill="#DDDDDD" />
  </g>
  
  <!-- Trumpet cat -->
  <g transform="translate(210, 181)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="9" ry="7" fill="#E7A83E" />
    <!-- Head -->
    <circle cx="0" cy="-10" r="6" fill="#E7A83E" />
    <!-- Ears -->
    <path d="M-4,-14 L-6,-18 L-1,-15 Z" fill="#E7A83E" />
    <path d="M4,-14 L6,-18 L1,-15 Z" fill="#E7A83E" />
    <!-- Eyes -->
    <circle cx="-2" cy="-11" r="0.8" fill="#000" />
    <circle cx="2" cy="-11" r="0.8" fill="#000" />
    <!-- Trumpet -->
    <path d="M0,-6 C2,-6 5,-6 7,-7 C9,-8 10,-9 10,-10 C10,-11 9,-12 7,-13 C5,-14 2,-14 0,-14" stroke="#ECCC6D" stroke-width="1" fill="#ECCC6D" />
    <rect x="-10" y="-10" width="10" height="2" fill="#ECCC6D" />
    <circle cx="-10" cy="-9" r="2" fill="#ECCC6D" />
    <circle cx="7" cy="-10" r="3" fill="none" stroke="#ECCC6D" stroke-width="1" />
  </g>
  
  <!-- Piano cat -->
  <g transform="translate(150, 175)">
    <!-- Body -->
    <ellipse cx="0" cy="10" rx="8" ry="6" fill="#111" />
    <!-- Head -->
    <circle cx="0" cy="2" r="5" fill="#111" />
    <!-- Ears -->
    <path d="M-3,-1 L-5,-5 L-1,-2 Z" fill="#111" />
    <path d="M3,-1 L5,-5 L1,-2 Z" fill="#111" />
    <!-- Eyes -->
    <circle cx="-1.5" cy="1.5" r="0.7" fill="#FFF" />
    <circle cx="1.5" cy="1.5" r="0.7" fill="#FFF" />
    <!-- Piano keys -->
    <rect x="-8" y="8" width="16" height="4" rx="1" fill="#FFF" stroke="#222" stroke-width="0.5" />
    <line x1="-6" y1="8" x2="-6" y2="12" stroke="#222" stroke-width="0.5" />
    <line x1="-4" y1="8" x2="-4" y2="12" stroke="#222" stroke-width="0.5" />
    <line x1="-2" y1="8" x2="-2" y2="12" stroke="#222" stroke-width="0.5" />
    <line x1="0" y1="8" x2="0" y2="12" stroke="#222" stroke-width="0.5" />
    <line x1="2" y1="8" x2="2" y2="12" stroke="#222" stroke-width="0.5" />
    <line x1="4" y1="8" x2="4" y2="12" stroke="#222" stroke-width="0.5" />
    <line x1="6" y1="8" x2="6" y2="12" stroke="#222" stroke-width="0.5" />
    <rect x="-7" y="8" width="1" height="2" fill="#222" />
    <rect x="-5" y="8" width="1" height="2" fill="#222" />
    <rect x="-3" y="8" width="1" height="2" fill="#222" />
    <rect x="-1" y="8" width="1" height="2" fill="#222" />
    <rect x="1" y="8" width="1" height="2" fill="#222" />
    <rect x="3" y="8" width="1" height="2" fill="#222" />
    <rect x="5" y="8" width="1" height="2" fill="#222" />
  </g>

  <!-- Musical notes floating in the air with glow -->
  <g filter="url(#glow)">
    <path d="M60,140 Q80,120 100,140" stroke="#FFEC85" stroke-width="1" fill="none" />
    <circle cx="60" cy="140" r="3" fill="#FFEC85" />
    
    <path d="M220,120 Q240,100 260,120" stroke="#FFEC85" stroke-width="1" fill="none" />
    <circle cx="220" cy="120" r="3" fill="#FFEC85" />
    
    <path d="M170,90 Q190,70 210,90" stroke="#FFEC85" stroke-width="1" fill="none" />
    <circle cx="170" cy="90" r="3" fill="#FFEC85" />
    
    <path d="M90,110 Q110,90 130,110" stroke="#FFEC85" stroke-width="1" fill="none" />
    <circle cx="90" cy="110" r="3" fill="#FFEC85" />
    
    <path d="M130,140 Q150,120 170,140" stroke="#FFEC85" stroke-width="1" fill="none" />
    <circle cx="130" cy="140" r="3" fill="#FFEC85" />
  </g>

  <!-- Water ripples -->
  <path d="M50,220 Q100,215 150,220 Q200,225 250,220" stroke="#6BB5FF" stroke-width="0.5" fill="none" opacity="0.4" />
  <path d="M70,230 Q120,225 170,230 Q220,235 270,230" stroke="#6BB5FF" stroke-width="0.5" fill="none" opacity="0.3" />
  <path d="M40,240 Q90,235 140,240 Q190,245 240,240" stroke="#6BB5FF" stroke-width="0.5" fill="none" opacity="0.2" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient background -->
  <defs>
    <linearGradient id="moonlight" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#456778" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#234567" stop-opacity="0.4" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#moonlight)" />

  <!-- Floating lily pad -->
  <g transform="translate(120, 180)">
    <ellipse cx="0" cy="0" rx="80" ry="20" fill="#8BC34A" />
    <ellipse cx="0" cy="0" rx="70" ry="15" fill="#C6E2B5" />
    <path d="M -60 0 C -60 20, 60 20, 60 0" fill="#8BC34A" />
  </g>

  <!-- Cat musicians -->
  <g transform="translate(140, 150)">
    <!-- Conductor cat -->
    <g transform="translate(0, 0)">
      <circle cx="0" cy="0" r="15" fill="#F7DC6F" />
      <path d="M 0 -15 L 0 15" stroke="#111" stroke-width="2" />
      <path d="M -10 10 L 10 10" stroke="#111" stroke-width="2" />
    </g>

    <!-- Violinist cat -->
    <g transform="translate(-40, 20)">
      <circle cx="0" cy="0" r="10" fill="#F7DC6F" />
      <path d="M 0 -10 L 0 10" stroke="#111" stroke-width="2" />
      <path d="M -5 5 L 5 5" stroke="#111" stroke-width="2" />
      <path d="M 0 0 L -10 -10" stroke="#111" stroke-width="2" />
    </g>

    <!-- Cellist cat -->
    <g transform="translate(40, 20)">
      <circle cx="0" cy="0" r="10" fill="#F7DC6F" />
      <path d="M 0 -10 L 0 10" stroke="#111" stroke-width="2" />
      <path d="M -5 5 L 5 5" stroke="#111" stroke-width="2" />
      <path d="M 0 0 L 10 -10" stroke="#111" stroke-width="2" />
    </g>
  </g>

  <!-- Music notes -->
  <g transform="translate(120, 100)">
    <path d="M 0 0 L 10 10" stroke="#111" stroke-width="2" />
    <path d="M 10 0 L 20 10" stroke="#111" stroke-width="2" />
    <path d="M 20 0 L 30 10" stroke="#111" stroke-width="2" />
  </g>

  <!-- Moon -->
  <g transform="translate(250, 50)">
    <circle cx="0" cy="0" r="30" fill="#F2C464" />
    <path d="M 0 0 L 0 30" stroke="#111" stroke-width="2" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image effectively captures the concept of a 'Moonlit cat orchestra on a floating lily pad' with clear depictions of cats playing instruments under a moonlit sky.

    The technical quality and detail in the depiction of the cats and setting enhance the visual appeal.

    In contrast, Player 2's submission lacks clarity and detail, making it difficult to interpret the theme as intended.

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
111
Player 2
20
Rectangles

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

Player 1
11
Player 2
1
Circles

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

Player 1
49
Player 2
4
Ellipses

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

Player 1
8
Player 2
2
Lines

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

Player 1
17
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
26
Player 2
13
Groups

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

Player 1
8
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
33
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
30
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
6
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
84
Player 2
26
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
6
Player 2
1
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