Back

SVG Drawing Match #1945

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat playing a violin on a floating lily pad"

SVG by Qwen-2.5-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ADD8E6"/>
      <stop offset="100%" stop-color="#87CEFA"/>
    </linearGradient>
    <linearGradient id="lilyPadGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#6A5ACD"/>
      <stop offset="100%" stop-color="#9370DB"/>
    </linearGradient>
    <linearGradient id="catGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FFDAB9"/>
      <stop offset="100%" stop-color="#FFE4B5"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  <g transform="translate(150, 150)">
    <circle cx="0" cy="0" r="70" fill="url(#lilyPadGradient)" stroke="#6A5ACD" stroke-width="2"/>
    <path d="M-30,30 Q-20,40 -10,30 T0,30 T10,30 T20,40 T30,30" fill="none" stroke="#8B0000" stroke-width="4"/>
    <path d="M-30,30 Q-20,40 -10,30 T0,30 T10,30 T20,40 T30,30" fill="none" stroke="#8B0000" stroke-width="4" transform="rotate(180)"/>
    <path d="M-30,30 Q-20,40 -10,30 T0,30 T10,30 T20,40 T30,30" fill="none" stroke="#8B0000" stroke-width="4" transform="rotate(90)"/>
    <path d="M-30,30 Q-20,40 -10,30 T0,30 T10,30 T20,40 T30,30" fill="none" stroke="#8B0000" stroke-width="4" transform="rotate(270)"/>
    <circle cx="0" cy="-20" r="5" fill="#FFD700"/>
    <circle cx="0" cy="-20" r="3" fill="#000000"/>
    <circle cx="0" cy="20" r="15" fill="#FFFFFF"/>
    <path d="M-15,10 L-15,25 Q-10,20 -5,25 L-5,10 Q-10,15 -15,10" fill="url(#catGradient)" stroke="#000000" stroke-width="1"/>
    <path d="M5,10 L5,25 Q10,20 15,25 L15,10 Q10,15 5,10" fill="url(#catGradient)" stroke="#000000" stroke-width="1"/>
    <path d="M-10,25 Q0,35 10,25" stroke="#000000" stroke-width="2" fill="none"/>
    <path d="M-25,5 Q-20,10 -15,5" fill="url(#catGradient)" stroke="#000000" stroke-width="1"/>
    <path d="M25,5 Q20,10 15,5" fill="url(#catGradient)" stroke="#000000" stroke-width="1"/>
    <path d="M-10,0 Q0,10 10,0" stroke="#000000" stroke-width="2" fill="none"/>
  </g>
  <path d="M100,180 Q120,200 140,180 T180,180" stroke="#8B0000" stroke-width="4" fill="none"/>
  <path d="M120,180 Q130,170 140,180" stroke="#8B0000" stroke-width="4" fill="none"/>
  <circle cx="130" cy="180" r="3" fill="#000000"/>
  <circle cx="170" cy="180" r="3" fill="#000000"/>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with gradient sky and water ripples -->
  <defs>
    <linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="60%">
      <stop offset="0%" stop-color="#87CEEB" />
      <stop offset="100%" stop-color="#1E90FF" />
    </linearGradient>
    <linearGradient id="water" x1="0%" y1="60%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1E90FF" />
      <stop offset="100%" stop-color="#000080" />
    </linearGradient>
    <radialGradient id="lilypad" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#7CFC00" />
      <stop offset="80%" stop-color="#228B22" />
      <stop offset="100%" stop-color="#006400" />
    </radialGradient>
    <filter id="water-ripple" x="-20%" y="-20%" width="140%" height="140%">
      <feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="2" result="noise" seed="3"/>
      <feDisplacementMap in="SourceGraphic" in2="noise" scale="5" xChannelSelector="R" yChannelSelector="G"/>
    </filter>
    <filter id="glow" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="2" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    <pattern id="lilypad-texture" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M0,10 Q5,0 10,10 T20,10" fill="none" stroke="#006400" stroke-width="0.5" opacity="0.3"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="180" fill="url(#sky)"/>
  <rect x="0" y="180" width="300" height="120" fill="url(#water)" filter="url(#water-ripple)"/>
  
  <!-- Moon reflection -->
  <circle cx="220" cy="40" r="15" fill="#FFFACD" filter="url(#glow)"/>
  <ellipse cx="220" cy="220" rx="10" ry="6" fill="#FFFACD" opacity="0.5" filter="url(#water-ripple)"/>
  
  <!-- Lily pad -->
  <g transform="translate(150, 200)">
    <ellipse cx="0" cy="0" rx="70" ry="50" fill="url(#lilypad)" stroke="#006400" stroke-width="2" filter="url(#water-ripple)"/>
    <ellipse cx="0" cy="0" rx="70" ry="50" fill="url(#lilypad-texture)" opacity="0.6"/>
    <path d="M-60,-10 L-70,0 L-60,10" fill="#228B22" stroke="#006400"/>
    <ellipse cx="50" cy="10" rx="15" ry="10" fill="#FF69B4" stroke="#FF1493" stroke-width="0.5">
      <animate attributeName="rx" values="15;16;15" dur="2s" repeatCount="indefinite"/>
    </ellipse>
    <ellipse cx="55" cy="5" rx="5" ry="3" fill="#FF1493"/>
  </g>
  
  <!-- Cat -->
  <g transform="translate(130, 170)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="25" ry="20" fill="#FFA500" stroke="#8B4513" stroke-width="1"/>
    
    <!-- Head -->
    <circle cx="20" cy="-15" r="18" fill="#FFA500" stroke="#8B4513" stroke-width="1"/>
    
    <!-- Ears -->
    <path d="M10,-30 L5,-40 L20,-35 Z" fill="#FFA500" stroke="#8B4513" stroke-width="1"/>
    <path d="M30,-30 L45,-40 L35,-35 Z" fill="#FFA500" stroke="#8B4513" stroke-width="1"/>
    <path d="M12,-28 L8,-36 L18,-32 Z" fill="#FFC0CB" stroke="none"/>
    <path d="M28,-28 L39,-36 L32,-32 Z" fill="#FFC0CB" stroke="none"/>
    
    <!-- Face -->
    <circle cx="15" cy="-20" r="2" fill="#000"/>
    <circle cx="25" cy="-20" r="2" fill="#000"/>
    <path d="M15,-12 Q20,-8 25,-12" fill="none" stroke="#000" stroke-width="1" stroke-linecap="round"/>
    <path d="M12,-25 L5,-27 M28,-25 L35,-27" fill="none" stroke="#000" stroke-width="1" stroke-linecap="round"/>
    <path d="M12,-15 L6,-16 M28,-15 L34,-16" fill="none" stroke="#000" stroke-width="1" stroke-linecap="round"/>
    
    <!-- Tail -->
    <path d="M-20,5 Q-40,20 -30,-10 Q-20,-20 -10,0" fill="#FFA500" stroke="#8B4513" stroke-width="1">
      <animate attributeName="d" values="M-20,5 Q-40,20 -30,-10 Q-20,-20 -10,0;M-20,5 Q-35,15 -25,-15 Q-15,-25 -10,0;M-20,5 Q-40,20 -30,-10 Q-20,-20 -10,0" dur="3s" repeatCount="indefinite"/>
    </path>
    
    <!-- Front paws -->
    <path d="M10,15 Q12,22 15,15" fill="#FFA500" stroke="#8B4513" stroke-width="1"/>
    <path d="M-10,15 Q-8,22 -5,15" fill="#FFA500" stroke="#8B4513" stroke-width="1"/>
    
    <!-- Violin -->
    <g transform="rotate(-25)">
      <path d="M40,-5 Q50,-15 45,-25 Q30,-35 25,-25 Q20,-15 30,-5 Z" fill="#8B4513" stroke="#4A2600" stroke-width="1"/>
      <rect x="23" y="-40" width="2" height="45" fill="#4A2600" stroke="#2F1400" stroke-width="0.5"/>
      <path d="M20,-40 L28,-40 L28,-45 L20,-45 Z" fill="#4A2600" stroke="#2F1400" stroke-width="0.5"/>
      <line x1="25" y1="-5" x2="25" y2="-25" stroke="#000" stroke-width="0.3"/>
      <line x1="30" y1="-7" x2="30" y2="-23" stroke="#000" stroke-width="0.3"/>
      <line x1="35" y1="-10" x2="35" y2="-20" stroke="#000" stroke-width="0.3"/>
      <line x1="40" y1="-14" x2="40" y2="-16" stroke="#000" stroke-width="0.3"/>
      
      <!-- Bow -->
      <path d="M10,-15 L45,-35" fill="none" stroke="#8B4513" stroke-width="1"/>
      <path d="M10,-15 L45,-35" fill="none" stroke="#DAA520" stroke-width="0.5">
        <animate attributeName="y2" values="-35;-37;-35" dur="0.5s" repeatCount="indefinite"/>
      </path>
    </g>
    
    <!-- Musical notes -->
    <g filter="url(#glow)">
      <path d="M50,-40 L52,-30 L55,-30 L55,-40 Z" fill="#000">
        <animate attributeName="transform" type="translate" values="0,0; 5,-5; 0,0" dur="2s" repeatCount="indefinite"/>
      </path>
      <circle cx="52" cy="-30" r="2" fill="#000">
        <animate attributeName="transform" type="translate" values="0,0; 5,-5; 0,0" dur="2s" repeatCount="indefinite"/>
      </circle>
      <path d="M60,-50 L62,-40 L65,-40 L65,-50 Z" fill="#000">
        <animate attributeName="transform" type="translate" values="0,0; 5,-10; 0,0" dur="3s" repeatCount="indefinite"/>
      </path>
      <circle cx="62" cy="-40" r="2" fill="#000">
        <animate attributeName="transform" type="translate" values="0,0; 5,-10; 0,0" dur="3s" repeatCount="indefinite"/>
      </circle>
    </g>
  </g>
  
  <!-- Water lilies -->
  <circle cx="40" cy="210" r="10" fill="#FF69B4" stroke="#FF1493" stroke-width="0.5" filter="url(#water-ripple)"/>
  <circle cx="240" cy="230" r="8" fill="#FF69B4" stroke="#FF1493" stroke-width="0.5" filter="url(#water-ripple)"/>
  <circle cx="70" cy="240" r="6" fill="#FF69B4" stroke="#FF1493" stroke-width="0.5" filter="url(#water-ripple)"/>
  
  <!-- Fireflies -->
  <circle cx="50" cy="80" r="1.5" fill="#FFFF00" filter="url(#glow)">
    <animate attributeName="opacity" values="0.2;1;0.2" dur="3s" repeatCount="indefinite"/>
    <animate attributeName="cy" values="80;75;80" dur="4s" repeatCount="indefinite"/>
  </circle>
  <circle cx="250" cy="100" r="1.5" fill="#FFFF00" filter="url(#glow)">
    <animate attributeName="opacity" values="0.2;1;0.2" dur="4s" repeatCount="indefinite"/>
    <animate attributeName="cx" values="250;245;250" dur="5s" repeatCount="indefinite"/>
  </circle>
  <circle cx="100" cy="50" r="1.5" fill="#FFFF00" filter="url(#glow)">
    <animate attributeName="opacity" values="0.2;1;0.2" dur="5s" repeatCount="indefinite"/>
    <animate attributeName="cy" values="50;55;50" dur="6s" repeatCount="indefinite"/>
  </circle>
  <circle cx="200" cy="120" r="1.5" fill="#FFFF00" filter="url(#glow)">
    <animate attributeName="opacity" values="0.2;1;0.2" dur="2.5s" repeatCount="indefinite"/>
    <animate attributeName="cx" values="200;205;200" dur="3.5s" repeatCount="indefinite"/>
  </circle>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission adheres closely to the prompt, depicting a cat clearly playing a violin on a floating lily pad.

    The use of color and composition effectively captures the whimsical nature of the scene.

    Player 1's submission lacks clarity and does not visually represent 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
19
Player 2
44
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
6
Player 2
13
Ellipses

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

Player 1
Player 2
6
Lines

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

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

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

Player 1
1
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
13
Player 2
28

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
18

Interactivity Metrics

Animations

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

Player 1
Player 2
15
Elements with Transform

The number of elements with transform attributes in the SVG.

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