Back

SVG Drawing Match #379

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Jellyfish ballet in moonlit ocean, with stars swirling around gracefully"

SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Ocean background gradient -->
    <radialGradient id="oceanGradient" cx="0.5" cy="0.5" r="0.8">
      <stop offset="0%" stop-color="#001f3f" />
      <stop offset="100%" stop-color="#000010" />
    </radialGradient>
    <!-- Moon gradient -->
    <radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#fefefe"/>
      <stop offset="100%" stop-color="#aaaaaa"/>
    </radialGradient>
    <!-- Jellyfish Gradients -->
    <radialGradient id="jellyGradient1" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff66cc" />
      <stop offset="100%" stop-color="#660066" />
    </radialGradient>
    <radialGradient id="jellyGradient2" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#66ccff" />
      <stop offset="100%" stop-color="#003366" />
    </radialGradient>
    <!-- Star gradient for subtle glows -->
    <radialGradient id="starGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="white" stop-opacity="1" />
      <stop offset="100%" stop-color="white" stop-opacity="0" />
    </radialGradient>
    <!-- Glow filter for luminous effect -->
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="2" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <!-- Star symbol for reuse -->
    <symbol id="star" viewBox="0 0 10 10">
      <polygon points="5,0 6,4 10,4 7,6 8,10 5,8 2,10 3,6 0,4 4,4" fill="white" opacity="0.9"/>
    </symbol>
  </defs>
  
  <!-- Ocean background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#oceanGradient)" />

  <!-- Moon in the sky -->
  <circle cx="240" cy="60" r="30" fill="url(#moonGradient)" stroke="white" stroke-width="1"/>

  <!-- Swirling stars -->
  <g id="swirlingStars" filter="url(#glow)">
    <g transform="translate(150,150) rotate(-20)">
      <use href="#star" x="-3" y="-45" width="10" height="10"/>
      <use href="#star" x="20" y="-10" width="10" height="10"/>
      <use href="#star" x="15" y="20" width="8" height="8"/>
      <use href="#star" x="-25" y="15" width="8" height="8"/>
      <use href="#star" x="-15" y="-5" width="10" height="10"/>
    </g>
  </g>

  <!-- Jellyfish 1: Graceful ballet in the moonlit ocean -->
  <g filter="url(#glow)">
    <!-- Umbrella -->
    <path d="M80,130 Q100,110 120,130 Q100,150 80,130 Z" fill="url(#jellyGradient1)" opacity="0.9"/>
    <!-- Tentacles -->
    <path d="M90,130 C85,160 95,170 90,200" fill="none" stroke="url(#jellyGradient1)" stroke-width="2" stroke-linecap="round"/>
    <path d="M100,130 C100,150 105,160 110,200" fill="none" stroke="url(#jellyGradient1)" stroke-width="2" stroke-linecap="round"/>
    <path d="M110,130 C115,145 125,180 120,210" fill="none" stroke="url(#jellyGradient1)" stroke-width="2" stroke-linecap="round"/>
  </g>

  <!-- Jellyfish 2: Another dancer in the deep -->
  <g filter="url(#glow)">
    <!-- Umbrella -->
    <path d="M180,180 Q200,160 220,180 Q200,200 180,180 Z" fill="url(#jellyGradient2)" opacity="0.9"/>
    <!-- Tentacles -->
    <path d="M190,180 C190,190 195,200 190,220" fill="none" stroke="url(#jellyGradient2)" stroke-width="2" stroke-linecap="round"/>
    <path d="M200,180 C205,185 205,205 210,220" fill="none" stroke="url(#jellyGradient2)" stroke-width="2" stroke-linecap="round"/>
    <path d="M210,180 C210,195 220,200 215,230" fill="none" stroke="url(#jellyGradient2)" stroke-width="2" stroke-linecap="round"/>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="oceanGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#001f3f" />
      <stop offset="100%" stop-color="#004d7f" />
    </linearGradient>
    <radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff99cc" />
      <stop offset="100%" stop-color="#ffccff" />
    </radialGradient>
    <radialGradient id="moonlight" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#fff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#ffffcc" stop-opacity="0.4"/>
    </radialGradient>
  </defs>
  
  <rect width="100%" height="100%" fill="url(#oceanGradient)" />
  
  <circle cx="240" cy="50" r="40" fill="url(#moonlight)" />

  <g transform="translate(100,150)">
    <!-- Jellyfish Tentacles -->
    <path d="M10,0 C25,20 40,20 55,0 C50,-10 40,-30 20,-25 C0,-20 -5,-10 0,0 Z" fill="url(#jellyGradient)" />
    <path d="M25,15 C40,25 60,25 75,15 C70,5 65,-15 35,-10 C10,-5 5,5 15,15 Z" fill="url(#jellyGradient)" transform="translate(0,20)" />
    <path d="M-5,35 C10,55 25,55 40,35 C35,25 30,5 10,0 C-15,5 -10,25 0,35 Z" fill="url(#jellyGradient)" transform="translate(0,40)" />
    <!-- Adding more tentacles -->
    <rect x="-1" y="50" width="2" height="20" fill="#ff66b2" opacity="0.7" />
    <rect x="19" y="50" width="2" height="20" fill="#ff66b2" opacity="0.5" />
    <rect x="39" y="50" width="2" height="20" fill="#ff66b2" opacity="0.3" />
  </g>

  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="40" cy="40" r="2"/>
    <circle cx="60" cy="20" r="2.5"/>
    <circle cx="100" cy="50" r="3"/>
    <circle cx="200" cy="80" r="1.5"/>
    <circle cx="250" cy="30" r="2"/>
    <circle cx="180" cy="100" r="2"/>
    <circle cx="270" cy="70" r="3.5"/>
  </g>
  
  <g opacity="0.5">
    <circle cx="50" cy="60" r="7"/>
    <circle cx="70" cy="90" r="5"/>
    <circle cx="150" cy="30" r="2.5"/>
    <circle cx="200" cy="140" r="4"/>
  </g>

  <path d="M0,300 L300,300 L300,0 L0,0 Z" fill="none"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini high (2025-01-31) Player 1

Judge's Analysis

    Player 1's submission more effectively captures the theme of a 'jellyfish ballet in a moonlit ocean' with its clear depiction of jellyfish and swirling stars, creating a sense of movement and grace.

    The choice of colors and composition enhances the visual appeal, adhering closely to the prompt.

    Player 2's image, while creative, lacks clarity in representing jellyfish and the swirling stars, resulting in a less cohesive execution of 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
11
Player 2
20
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
1
Player 2
12
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
1
Player 2
Paths

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

Player 1
8
Player 2
4
Groups

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
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
1
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
20
Player 2
20
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
7
Player 2
3
Use Elements

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

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