Back

SVG Drawing Match #1726

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cyclone of colorful musical notes over a calm, sleeping city"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0c1445"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <radialGradient id="noteGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc00" />
      <stop offset="100%" stop-color="#ff3300" />
    </radialGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="300" height="300">
      <rect width="300" height="300" fill="rgba(20, 20, 40, 0.4)"/>
      <!-- Silhouette of buildings -->
      <path d="M10 280 L10 230 L30 230 L30 250 L50 250 L50 220 L70 220 L70 240 L90 240 L90 210 L110 210 L110 230 L130 230 L130 200 L150 200 L150 220 L170 220 L170 210 L190 210 L190 230 L210 230 L210 220 L230 220 L230 240 L250 240 L250 220 L270 220 L270 240 L290 240 L290 280 Z" fill="rgba(40, 40, 60, 0.8)"/>
    </pattern>
  </defs>
  
  <!-- Calm Sleeping City -->
  <rect y="220" width="300" height="80" fill="url(#cityPattern)" />
  
  <!-- Cyclone of Musical Notes -->
  <g id="cyclone" transform="translate(150,150)">
    <!-- Create a swirling group of notes -->
    <g id="notes">
      <!-- Musical note path definition -->
      <defs>
        <path id="notePath" d="M0,0 C2,-8 10,-8 10,0 C10,4 6,6 6,10 C6,14 10,16 10,20 C10,24 6,28 6,28 L4,28 C4,28 4,24 4,22 C4,20 0,20 0,16 C0,12 4,10 4,6 C4,2 0,0 0,0 Z" />
      </defs>
      
      <!-- Generate multiple notes in rotation and scaling -->
      <g fill="url(#noteGradient)" stroke="white" stroke-width="0.5">
        <g transform="rotate(0) scale(1)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(30) scale(0.9)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(60) scale(1.1)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(90) scale(0.8)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(120) scale(1.0)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(150) scale(0.85)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(180) scale(1.2)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(210) scale(0.95)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(240) scale(1.05)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(270) scale(0.75)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(300) scale(1.15)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
        <g transform="rotate(330) scale(0.9)">
          <use xlink:href="#notePath" transform="translate(0,-50)"/>
        </g>
      </g>
      
      <!-- Additional swirling accents using paths (curved lines paths representing swirling air) -->
      <path d="M0,-30 Q20,-45 10,-60" stroke="url(#noteGradient)" stroke-width="2" fill="none" opacity="0.6" />
      <path d="M0,-20 Q-15,-35 -5,-55" stroke="url(#noteGradient)" stroke-width="2" fill="none" opacity="0.6" />
      <path d="M0,-10 Q25,-25 15,-40" stroke="url(#noteGradient)" stroke-width="2" fill="none" opacity="0.6" />
    </g>
  </g>
  
  <!-- Outer decorative circle to tie the elements -->
  <circle cx="150" cy="150" r="100" fill="none" stroke="white" stroke-opacity="0.2" stroke-width="2"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#123;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#235;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="cycloneGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
      <stop offset="33%" style="stop-color:#4b0082;stop-opacity:1" />
      <stop offset="66%" style="stop-color:#00ff00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0000ff;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- City Elements -->
  <g id="city">
    <!-- Buildings -->
    <rect x="10" y="200" width="50" height="100" fill="#333"/>
    <rect x="70" y="180" width="60" height="120" fill="#333"/>
    <rect x="140" y="220" width="40" height="80" fill="#333"/>
    <rect x="190" y="210" width="50" height="90" fill="#333"/>
    
    <!-- Windows -->
    <circle cx="35" cy="230" r="2" fill="#444"/>
    <circle cx="95" cy="200" r="2" fill="#444"/>
    <circle cx="160" cy="240" r="2" fill="#444"/>
    <circle cx="215" cy="225" r="2" fill="#444"/>
    
    <!-- Ground -->
    <path d="M0 250 Q150 260 300 250 L300 300 L0 300 Z" fill="#111"/>
  </g>
  
  <!-- Cyclone -->
  <g id="cyclone" transform="translate(150,150)">
    <path d="M-100-100 L100-100 Q100 100 -100 100 Z" fill="none" stroke="white" stroke-width="2"/>
    <path d="M-80-80 L80-80 Q80 80 -80 80 Z" fill="none" stroke="white" stroke-width="2"/>
    <path d="M-60-60 L60-60 Q60 60 -60 60 Z" fill="none" stroke="white" stroke-width="2"/>
    <path d="M-40-40 L40-40 Q40 40 -40 40 Z" fill="none" stroke="white" stroke-width="2"/>
    <path d="M-20-20 L20-20 Q20 20 -20 20 Z" fill="none" stroke="white" stroke-width="2"/>
    
    <!-- Musical Notes -->
    <g transform="rotate(45)">
      <rect x="-50" y="-50" width="100" height="20" rx="10" fill="url(#cycloneGradient)"/>
      <rect x="-40" y="-40" width="80" height="20" rx="10" fill="url(#cycloneGradient)"/>
      <rect x="-30" y="-30" width="60" height="20" rx="10" fill="url(#cycloneGradient)"/>
    </g>
    
    <!-- Swirling Lines -->
    <path d="M-100-100 C-50-50 0 0 50 50" stroke="url(#cycloneGradient)" stroke-width="4" fill="none"/>
    <path d="M100-100 C50-50 0 0 -50 50" stroke="url(#cycloneGradient)" stroke-width="4" fill="none"/>
  </g>
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="#fff"/>
    <circle cx="100" cy="80" r="1.5" fill="#fff"/>
    <circle cx="150" cy="30" r="1" fill="#fff"/>
    <circle cx="200" cy="70" r="1.5" fill="#fff"/>
    <circle cx="250" cy="40" r="1" fill="#fff"/>
  </g>
  
  <!-- Moon -->
  <g transform="translate(280,80)">
    <path d="M0 0 Q30 0 30 30 Q0 30 0 0" fill="#fff" fill-opacity="0.8"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission effectively captures the idea of a 'cyclone of colorful musical notes over a calm, sleeping city' with a vibrant swirl of colors suggesting movement and musicality.

    The contrast between the dynamic cyclone and the serene cityscape is visually striking, adhering well to the prompt.

    In comparison, Player 1's image lacks the presence of a cityscape and musical notes, reducing its adherence to the theme.

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
9
Player 2
26
Rectangles

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

Player 1
3
Player 2
8
Circles

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

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

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

Player 1
5
Player 2
9
Groups

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

Player 1
15
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
5

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
25
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
48
Player 2
32
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

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