Back

SVG Drawing Match #4

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Moonlit jellyfish ballroom"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#fffacd"/>
      <stop offset="100%" stop-color="#f0e68c"/>
    </radialGradient>
    <linearGradient id="backgroundGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001848"/>
      <stop offset="100%" stop-color="#0b003f"/>
    </linearGradient>
    <linearGradient id="floorGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#2c3e50" />
      <stop offset="100%" stop-color="#34495e" />
    </linearGradient>
    <radialGradient id="jellyGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff69b4" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#c71585" stop-opacity="0.4"/>
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="floorPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="#34495e" opacity="0.3"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#backgroundGradient)"/>
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="url(#moonGradient)" filter="url(#glow)"/>
  
  <!-- Ballroom Structure -->
  <g>
    <!-- Ceilings -->
    <path d="M50,50 Q150,10 250,50 L250,100 Q150,80 50,100 Z" fill="#2c3e50" stroke="#1a252f" stroke-width="2"/>
    <!-- Pillars -->
    <g stroke="#1a252f" stroke-width="2">
      <line x1="75" y1="100" x2="75" y2="250" />
      <line x1="150" y1="100" x2="150" y2="250" />
      <line x1="225" y1="100" x2="225" y2="250" />
    </g>
    <!-- Floor -->
    <rect y="250" width="300" height="50" fill="url(#floorGradient)" />
    <rect y="250" width="300" height="50" fill="url(#floorPattern)" opacity="0.3"/>
  </g>
  
  <!-- Jellyfish Chandeliers -->
  <g filter="url(#glow)">
    <g transform="translate(75,70)">
      <ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#jellyGradient)" />
      <path d="M0,10 C-5,20 -5,30 0,40 C5,30 5,20 0,10" fill="none" stroke="#ff1493" stroke-width="2" stroke-linecap="round"/>
      <path d="M0,10 C5,20 5,30 0,40 C-5,30 -5,20 0,10" fill="none" stroke="#ff1493" stroke-width="2" stroke-linecap="round"/>
    </g>
    <g transform="translate(150,70)">
      <ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#jellyGradient)" />
      <path d="M0,10 C-5,20 -5,30 0,40 C5,30 5,20 0,10" fill="none" stroke="#ff69b4" stroke-width="2" stroke-linecap="round"/>
      <path d="M0,10 C5,20 5,30 0,40 C-5,30 -5,20 0,10" fill="none" stroke="#ff69b4" stroke-width="2" stroke-linecap="round"/>
    </g>
    <g transform="translate(225,70)">
      <ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#jellyGradient)" />
      <path d="M0,10 C-5,20 -5,30 0,40 C5,30 5,20 0,10" fill="none" stroke="#db7093" stroke-width="2" stroke-linecap="round"/>
      <path d="M0,10 C5,20 5,30 0,40 C-5,30 -5,20 0,10" fill="none" stroke="#db7093" stroke-width="2" stroke-linecap="round"/>
    </g>
  </g>
  
  <!-- Additional Jellyfish Decorations -->
  <g filter="url(#glow)">
    <g transform="translate(100,150) scale(0.8)">
      <ellipse cx="0" cy="0" rx="15" ry="7" fill="url(#jellyGradient)" />
      <path d="M0,7 C-3,14 -3,21 0,28 C3,21 3,14 0,7" fill="none" stroke="#ff1493" stroke-width="1.5" stroke-linecap="round"/>
      <path d="M0,7 C3,14 3,21 0,28 C-3,21 -3,14 0,7" fill="none" stroke="#ff1493" stroke-width="1.5" stroke-linecap="round"/>
    </g>
    <g transform="translate(200,180) scale(0.6)">
      <ellipse cx="0" cy="0" rx="12" ry="5" fill="url(#jellyGradient)" />
      <path d="M0,5 C-2,10 -2,15 0,20 C2,15 2,10 0,5" fill="none" stroke="#ff69b4" stroke-width="1" stroke-linecap="round"/>
      <path d="M0,5 C2,10 2,15 0,20 C-2,15 -2,10 0,5" fill="none" stroke="#ff69b4" stroke-width="1" stroke-linecap="round"/>
    </g>
  </g>
  
  <!-- Reflections on Floor -->
  <g opacity="0.3">
    <ellipse cx="75" cy="260" rx="20" ry="5" fill="#ffffff" />
    <ellipse cx="150" cy="260" rx="20" ry="5" fill="#ffffff" />
    <ellipse cx="225" cy="260" rx="20" ry="5" fill="#ffffff" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="jellyfishGlow">
      <stop offset="0%" stop-color="#FF61D2" stop-opacity="0.8"/>
      <stop offset="70%" stop-color="#FFB5E9" stop-opacity="0.5"/>
      <stop offset="100%" stop-color="#FFFFFF" stop-opacity="0"/>
    </radialGradient>
    
    <pattern id="waterPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="3" fill="#1E90FF" opacity="0.2"/>
    </pattern>
    
    <filter id="glowEffect">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#waterPattern)"/>

  <!-- Moon -->
  <circle cx="150" cy="50" r="20" fill="#FFFFF0">
    <animate attributeName="opacity" from="1" to="0.8" dur="2s" repeatCount="indefinite" />
  </circle>

  <!-- Jellyfish -->
  <g filter="url(#glowEffect)">
    <path d="M150,100 Q170,120 150,140 Q130,120 150,100" fill="url(#jellyfishGlow)" stroke="#FF61D2" stroke-width="2"/>
    <path d="M180,120 Q200,140 180,160 Q160,140 180,120" fill="url(#jellyfishGlow)" stroke="#FF61D2" stroke-width="2"/>
    <path d="M120,120 Q140,140 120,160 Q100,140 120,120" fill="url(#jellyfishGlow)" stroke="#FF61D2" stroke-width="2"/>
  </g>

  <!-- Tentacles -->
  <g stroke="#FF61D2" stroke-width="1">
    <path d="M150,100 L150,200" stroke-dasharray="2,2"/>
    <path d="M170,120 L170,220" stroke-dasharray="2,2"/>
    <path d="M130,120 L130,220" stroke-dasharray="2,2"/>
    <path d="M180,140 L180,240" stroke-dasharray="2,2"/>
    <path d="M120,140 L120,240" stroke-dasharray="2,2"/>
  </g>

  <!-- Floating particles -->
  <g opacity="0.5">
    <circle cx="100" cy="180" r="2" fill="#FF61D2"/>
    <circle cx="200" cy="180" r="2" fill="#FF61D2"/>
    <circle cx="150" cy="200" r="3" fill="#FF61D2"/>
    <circle cx="120" cy="220" r="2" fill="#FF61D2"/>
    <circle cx="180" cy="220" r="2" fill="#FF61D2"/>
  </g>

  <!-- Light rays -->
  <g opacity="0.3">
    <line x1="150" y1="50" x2="150" y2="250" stroke="#FFFFF0" stroke-width="2"/>
    <line x1="130" y1="60" x2="170" y2="240" stroke="#FFFFF0" stroke-width="2"/>
    <line x1="170" y1="60" x2="130" y2="240" stroke="#FFFFF0" stroke-width="2"/>
  </g>

  <!-- Decorative waves -->
  <path d="M0,280 Q150,260 300,280 L300,300 L0,300 Z" fill="#1E90FF" opacity="0.2"/>
  <path d="M0,260 Q150,240 300,260 L300,300 L0,300 Z" fill="#1E90FF" opacity="0.1"/>
</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 captures the imaginative concept of a 'Moonlit jellyfish ballroom' with a more dynamic composition and vibrant use of color.

    The intricate design elements and creative interpretation of the prompt create a more visually compelling and engaging scene.

    Player 1's image, while technically sound, lacks the same level of creativity and complexity in conveying 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
27
Player 2
21
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
2
Player 2
7
Ellipses

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

Player 1
8
Player 2
Lines

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

Player 1
3
Player 2
3
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
11
Player 2
10
Groups

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

Player 1
10
Player 2
4

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
5

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
5
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
29
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
6
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