Back

SVG Drawing Match #1517

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cat surfing on a wave of pancakes"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient sky and clouds -->
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="syrupGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#654321;stop-opacity:1" />
    </linearGradient>
    <filter id="waveFilter">
      <feGaussianBlur stdDeviation="2" result="dropShadow"/>
      <feMerge>
        <feMergeNode in="dropShadow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

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

  <!-- Clouds -->
  <circle cx="50" cy="50" r="20" fill="white" filter="blur(5px)"/>
  <circle cx="150" cy="80" r="30" fill="white" filter="blur(5px)"/>
  <circle cx="250" cy="60" r="25" fill="white" filter="blur(5px)"/>

  <!-- Pancake wave -->
  <clipPath id="waveClip">
    <path d="M0,200 Q150,120 300,200 Q230,250 180,280 120,250 60,280 0,200Z"/>
  </clipPath>

  <g clip-path="url(#waveClip)">
    <!-- Pancake stacks -->
    <circle cx="100" cy="180" r="40" fill="yellow" opacity="0.8"/>
    <circle cx="140" cy="160" r="35" fill="orange" opacity="0.8"/>
    <circle cx="180" cy="180" r="40" fill="yellow" opacity="0.8"/>
    <circle cx="220" cy="160" r="35" fill="orange" opacity="0.8"/>
    <circle cx="260" cy="180" r="40" fill="yellow" opacity="0.8"/>
  </g>

  <!-- Cat -->
  <path d="M150,170 C160,160 170,150 175,140 C180,130 185,125 190,120 L190,100 L210,100 L215,120 C220,125 225,130 230,140 C235,150 240,160 245,170 L245,190 L225,190 L215,180 L205,190 L195,190 L185,180 L175,190 L165,190 L155,180 L150,170 Z"
       fill="white" stroke="black" stroke-width="2"/>
  <!-- Cat face -->
  <circle cx="185" cy="145" r="8" fill="black"/>
  <circle cx="195" cy="145" r="8" fill="black"/>
  <path d="M190,150 Q195,155 190,160" fill="pink" stroke="black" stroke-width="1"/>
  <!-- Whiskers -->
  <path d="M185,140 L185,130" stroke="black" stroke-width="2"/>
  <path d="M195,140 L205,130" stroke="black" stroke-width="2"/>
  <path d="M190,135 L200,125" stroke="black" stroke-width="2"/>

  <!-- Syrup effect -->
  <path d="M0,200 Q150,120 300,200 Q230,250 180,280 120,250 60,280 0,200Z"
        fill="url(#syrupGrad)" opacity="0.7"/>
  <circle cx="150" cy="200" r="10" fill="url(#syrupGrad)" opacity="0.5"/>
  <circle cx="100" cy="180" r="8" fill="url(#syrupGrad)" opacity="0.5"/>
  <circle cx="200" cy="180" r="8" fill="url(#syrupGrad)" opacity="0.5"/>

  <!-- Splashes -->
  <circle cx="50" cy="220" r="5" fill="white" filter="blur(2px)"/>
  <circle cx="250" cy="220" r="5" fill="white" filter="blur(2px)"/>
  <circle cx="150" cy="250" r="5" fill="white" filter="blur(2px)"/>
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="pancakeGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FDEBD0"/>
      <stop offset="100%" stop-color="#F5B7B1"/>
    </linearGradient>
    <radialGradient id="waveGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </radialGradient>
    <linearGradient id="catGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#F8F9FA"/>
      <stop offset="100%" stop-color="#C9D6DF"/>
    </linearGradient>
    <pattern id="pancakePattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect x="0" y="0" width="20" height="20" fill="#FDEBD0"/>
      <circle cx="10" cy="10" r="5" fill="white"/>
    </pattern>
  </defs>
  <path d="M100,100 Q150,150 200,100 T300,100" fill="none" stroke="url(#waveGradient)" stroke-width="30" stroke-linecap="round"/>
  <rect x="100" y="120" width="100" height="50" rx="20" fill="url(#pancakeGradient)"/>
  <rect x="90" y="120" width="10" height="50" rx="5" fill="url(#pancakePattern)"/>
  <rect x="200" y="120" width="10" height="50" rx="5" fill="url(#pancakePattern)"/>
  <path d="M150,150 h-10 a10,10 0 0 1 -10,-10 v-20 a10,10 0 0 1 10,-10 h10 a10,10 0 0 1 10,10 v20 a10,10 0 0 1 -10,10 Z" fill="url(#pancakeGradient)"/>
  <path d="M140,160 h-20 a20,20 0 0 1 -20,-20 v-40 a20,20 0 0 1 20,-20 h20 a20,20 0 0 1 20,20 v40 a20,20 0 0 1 -20,20 Z" fill="url(#pancakeGradient)"/>
  <circle cx="150" cy="160" r="20" fill="url(#catGradient)"/>
  <path d="M140,150 h-20 a20,20 0 0 1 -20,-20 v-20 a20,20 0 0 1 20,-20 h20 a20,20 0 0 1 20,20 v20 a20,20 0 0 1 -20,20 Z" fill="white"/>
  <circle cx="150" cy="160" r="15" fill="white"/>
  <circle cx="140" cy="155" r="5" fill="black"/>
  <circle cx="160" cy="155" r="5" fill="black"/>
  <circle cx="140" cy="155" r="2" fill="white"/>
  <circle cx="160" cy="155" r="2" fill="white"/>
  <path d="M140,170 Q130,180 140,190" stroke="black" stroke-width="3" fill="none"/>
  <path d="M160,170 Q170,180 160,190" stroke="black" stroke-width="3" fill="none"/>
  <path d="M150,200 Q140,220 150,240" stroke="black" stroke-width="3" fill="none"/>
  <path d="M150,200 Q160,220 150,240" stroke="black" stroke-width="3" fill="none"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's image more effectively captures the idea of a cat surfing on a wave of pancakes, with a clear depiction of both the cat and the pancakes, as well as a wave-like shape suggesting motion.

    The composition is clean and visually appealing.

    Player 1's submission lacks clarity in representing the theme, making it harder to discern the concept of pancakes or surfing.

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
24
Player 2
19
Rectangles

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

Player 1
1
Player 2
4
Circles

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

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

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

Player 1
7
Player 2
8
Groups

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
9
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
8

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
35
Player 2
41
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
3
Player 2
4
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