Back

SVG Drawing Match #1081

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A neon jellyfish orbiting a pixelated moon"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="#0A0A2A"/>
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="30" cy="40" r="1" fill="white" opacity="0.8">
      <animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="60" cy="70" r="0.8" fill="white" opacity="0.6">
      <animate attributeName="opacity" values="0.2;0.6;0.2" dur="4s" repeatCount="indefinite"/>
    </circle>
    <circle cx="120" cy="30" r="1.2" fill="white" opacity="0.7">
      <animate attributeName="opacity" values="0.4;0.7;0.4" dur="5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="50" r="0.9" fill="white" opacity="0.5">
      <animate attributeName="opacity" values="0.3;0.5;0.3" dur="3.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="90" r="1.1" fill="white" opacity="0.6">
      <animate attributeName="opacity" values="0.2;0.6;0.2" dur="4.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="40" cy="200" r="1" fill="white" opacity="0.7">
      <animate attributeName="opacity" values="0.4;0.7;0.4" dur="3.2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="80" cy="250" r="0.7" fill="white" opacity="0.5">
      <animate attributeName="opacity" values="0.3;0.5;0.3" dur="4.2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="220" cy="220" r="1.2" fill="white" opacity="0.8">
      <animate attributeName="opacity" values="0.5;0.8;0.5" dur="3.8s" repeatCount="indefinite"/>
    </circle>
    <circle cx="270" cy="160" r="0.9" fill="white" opacity="0.6">
      <animate attributeName="opacity" values="0.2;0.6;0.2" dur="4.7s" repeatCount="indefinite"/>
    </circle>
  </g>
  <use href="#stars" transform="translate(60, 90)"/>
  <use href="#stars" transform="translate(-30, 40)"/>
  
  <!-- Pixelated Moon -->
  <defs>
    <pattern id="pixelPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#DEDEDE"/>
    </pattern>
    <clipPath id="moonClip">
      <circle cx="150" cy="150" r="55"/>
    </clipPath>
    <radialGradient id="moonGlow" cx="150" cy="150" r="60" gradientUnits="userSpaceOnUse">
      <stop offset="70%" stop-color="#DEDEDE"/>
      <stop offset="100%" stop-color="#AAAAAA"/>
    </radialGradient>
  </defs>
  
  <!-- Moon base -->
  <circle cx="150" cy="150" r="55" fill="url(#moonGlow)"/>
  
  <!-- Pixel overlay -->
  <g clip-path="url(#moonClip)">
    <rect x="95" y="95" width="110" height="110" fill="url(#pixelPattern)"/>
    <rect x="105" y="115" width="10" height="10" fill="#BBBBBB"/>
    <rect x="145" y="105" width="10" height="10" fill="#BBBBBB"/>
    <rect x="175" y="125" width="10" height="10" fill="#BBBBBB"/>
    <rect x="115" y="165" width="10" height="10" fill="#BBBBBB"/>
    <rect x="185" y="165" width="10" height="10" fill="#BBBBBB"/>
    <rect x="135" y="185" width="10" height="10" fill="#BBBBBB"/>
    <rect x="165" y="175" width="10" height="10" fill="#BBBBBB"/>
    <rect x="125" y="145" width="10" height="10" fill="#AAAAAA"/>
    <rect x="155" y="155" width="10" height="10" fill="#AAAAAA"/>
    <rect x="175" y="145" width="10" height="10" fill="#AAAAAA"/>
  </g>
  
  <!-- Moon orbit path -->
  <circle cx="150" cy="150" r="100" fill="none" stroke="#2A2A5A" stroke-width="1" opacity="0.3"/>
  
  <!-- Neon Jellyfish -->
  <g transform="translate(230, 110) scale(0.6)">
    <defs>
      <filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
        <feGaussianBlur stdDeviation="4" result="blur"/>
        <feComposite in="SourceGraphic" in2="blur" operator="over"/>
      </filter>
      <radialGradient id="jellyfishBody" cx="0.5" cy="0.3" r="0.5">
        <stop offset="10%" stop-color="#FF00FF"/>
        <stop offset="90%" stop-color="#8A2BE2"/>
      </radialGradient>
      <linearGradient id="tentacleGradient" x1="0" y1="0" x2="0" y2="1">
        <stop offset="0%" stop-color="#FF00FF"/>
        <stop offset="100%" stop-color="#00FFFF"/>
      </linearGradient>
    </defs>
    
    <!-- Jellyfish body -->
    <ellipse cx="0" cy="0" rx="30" ry="35" fill="url(#jellyfishBody)" opacity="0.9" filter="url(#neonGlow)">
      <animate attributeName="ry" values="35;33;35" dur="2s" repeatCount="indefinite"/>
    </ellipse>
    
    <!-- Jellyfish inner glow -->
    <ellipse cx="0" cy="-5" rx="20" ry="25" fill="#FF80FF" opacity="0.3" filter="url(#neonGlow)"/>
    
    <!-- Jellyfish tentacles -->
    <g filter="url(#neonGlow)">
      <path d="M-25,15 Q-30,40 -40,70" stroke="url(#tentacleGradient)" fill="none" stroke-width="2" opacity="0.8">
        <animate attributeName="d" values="M-25,15 Q-30,40 -40,70;M-25,15 Q-35,45 -40,70;M-25,15 Q-30,40 -40,70" dur="3s" repeatCount="indefinite"/>
      </path>
      <path d="M-15,20 Q-15,50 -20,80" stroke="url(#tentacleGradient)" fill="none" stroke-width="2" opacity="0.8">
        <animate attributeName="d" values="M-15,20 Q-15,50 -20,80;M-15,20 Q-20,55 -20,80;M-15,20 Q-15,50 -20,80" dur="4s" repeatCount="indefinite"/>
      </path>
      <path d="M-5,20 Q0,60 -5,90" stroke="url(#tentacleGradient)" fill="none" stroke-width="2.5" opacity="0.8">
        <animate attributeName="d" values="M-5,20 Q0,60 -5,90;M-5,20 Q-5,65 -5,90;M-5,20 Q0,60 -5,90" dur="3.5s" repeatCount="indefinite"/>
      </path>
      <path d="M5,20 Q10,55 15,85" stroke="url(#tentacleGradient)" fill="none" stroke-width="2.5" opacity="0.8">
        <animate attributeName="d" values="M5,20 Q10,55 15,85;M5,20 Q15,60 15,85;M5,20 Q10,55 15,85" dur="4.2s" repeatCount="indefinite"/>
      </path>
      <path d="M15,20 Q20,50 25,75" stroke="url(#tentacleGradient)" fill="none" stroke-width="2" opacity="0.8">
        <animate attributeName="d" values="M15,20 Q20,50 25,75;M15,20 Q25,55 25,75;M15,20 Q20,50 25,75" dur="3.8s" repeatCount="indefinite"/>
      </path>
      <path d="M25,15 Q35,40 40,65" stroke="url(#tentacleGradient)" fill="none" stroke-width="2" opacity="0.8">
        <animate attributeName="d" values="M25,15 Q35,40 40,65;M25,15 Q40,45 40,65;M25,15 Q35,40 40,65" dur="3.3s" repeatCount="indefinite"/>
      </path>
    </g>
    
    <!-- Jellyfish sparkles -->
    <circle cx="-10" cy="-5" r="2" fill="#FFFFFF" opacity="0.8">
      <animate attributeName="opacity" values="0.4;0.8;0.4" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="10" cy="-10" r="1.5" fill="#FFFFFF" opacity="0.7">
      <animate attributeName="opacity" values="0.3;0.7;0.3" dur="1.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="0" cy="5" r="1.8" fill="#FFFFFF" opacity="0.6">
      <animate attributeName="opacity" values="0.2;0.6;0.2" dur="2.2s" repeatCount="indefinite"/>
    </circle>
    
    <!-- Orbit animation -->
    <animateTransform attributeName="transform" 
                      type="rotate" 
                      from="0" to="360" 
                      begin="0s" dur="20s" 
                      repeatCount="indefinite" 
                      additive="sum"/>
  </g>
  
  <!-- Digital particles around the orbit -->
  <g>
    <circle cx="150" cy="50" r="1.5" fill="#00FFFF">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="150" r="1.5" fill="#FF00FF">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="4s" repeatCount="indefinite"/>
    </circle>
    <circle cx="150" cy="250" r="1.5" fill="#00FFFF">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="3.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="50" cy="150" r="1.5" fill="#FF00FF">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="4.5s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Pixelated Moon -->
  <defs>
    <pattern id="pixels" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#333" rx="1" />
    </pattern>
  </defs>
  <circle cx="150" cy="150" r="80" fill="url(#pixels)" />
  
  <!-- Neon Jellyfish -->
  <g transform="translate(150 150)">
    <circle cx="0" cy="0" r="40" fill="#fff" />
    <circle cx="0" cy="0" r="35" fill="url(#neonGradient)" />
    <circle cx="0" cy="0" r="30" fill="#fff" />
    <circle cx="0" cy="0" r="25" fill="url(#neonGradient)" />
    <circle cx="0" cy="0" r="20" fill="#fff" />
  </g>
  
  <!-- Tentacles -->
  <g transform="translate(150 150)">
    <path d="M 0 0 Q 20 50 40 0" fill="none" stroke="url(#neonGradient)" stroke-width="5" />
    <path d="M 0 0 Q -20 50 -40 0" fill="none" stroke="url(#neonGradient)" stroke-width="5" />
    <path d="M 0 0 Q 20 -50 40 0" fill="none" stroke="url(#neonGradient)" stroke-width="5" />
    <path d="M 0 0 Q -20 -50 -40 0" fill="none" stroke="url(#neonGradient)" stroke-width="5" />
  </g>
  
  <!-- Neon Gradient -->
  <defs>
    <linearGradient id="neonGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#39FF14" stop-opacity="1" />
      <stop offset="50%" stop-color="#FF69B4" stop-opacity="1" />
      <stop offset="100%" stop-color="#39FF14" stop-opacity="1" />
    </linearGradient>
  </defs>
  
  <!-- Orbit -->
  <circle cx="150" cy="150" r="120" fill="none" stroke="#fff" stroke-width="2" stroke-dasharray="10 10" />
  
  <!-- Animation -->
  <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="10s" repeatCount="indefinite" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image clearly depicts the concept with a neon jellyfish orbiting a pixelated moon, effectively using color contrast and creating a visually appealing balance.

    The technical execution is precise, with a detailed representation of both the jellyfish and the moon.

    In contrast, Player 2's image lacks clarity in representing the prompt and does not visually convey the idea 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
40
Player 2
12
Rectangles

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

Player 1
13
Player 2
1
Circles

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

Player 1
19
Player 2
7
Ellipses

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

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

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

Player 1
5
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
4

Interactivity Metrics

Animations

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

Player 1
24
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

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

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

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