Back

SVG Drawing Match #1751

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Jellyfish troupe performing ballet on a grassy hill"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky Background with Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#84c1ff" />
      <stop offset="100%" stop-color="#d6eaff" />
    </linearGradient>
    
    <!-- Hill Gradient -->
    <linearGradient id="hillGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#7cd176" />
      <stop offset="100%" stop-color="#4a8c47" />
    </linearGradient>
    
    <!-- Jellyfish Glow -->
    <radialGradient id="jellyGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff88ee" stop-opacity="0.8" />
      <stop offset="70%" stop-color="#ff44ee" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#ff00ee" stop-opacity="0" />
    </radialGradient>
    
    <!-- Jellyfish Colors -->
    <radialGradient id="jellyBody1" cx="50%" cy="30%" r="70%" fx="40%" fy="30%">
      <stop offset="0%" stop-color="#ff88ff" />
      <stop offset="100%" stop-color="#aa44cc" />
    </radialGradient>
    
    <radialGradient id="jellyBody2" cx="50%" cy="30%" r="70%" fx="40%" fy="30%">
      <stop offset="0%" stop-color="#88ffff" />
      <stop offset="100%" stop-color="#44aacc" />
    </radialGradient>
    
    <radialGradient id="jellyBody3" cx="50%" cy="30%" r="70%" fx="40%" fy="30%">
      <stop offset="0%" stop-color="#ffff88" />
      <stop offset="100%" stop-color="#ffaa44" />
    </radialGradient>
    
    <!-- Spotlight -->
    <radialGradient id="spotlight" cx="50%" cy="0%" r="100%" fx="50%" fy="0%">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.3" />
      <stop offset="100%" stop-color="#ffffff" stop-opacity="0" />
    </radialGradient>
    
    <!-- Pattern for grass -->
    <pattern id="grassPattern" width="20" height="10" patternUnits="userSpaceOnUse">
      <path d="M0,10 C2,8 3,5 3,0 C3,5 5,8 7,10 C9,8 10,5 10,0 C10,5 12,8 14,10 C16,8 17,5 17,0 C17,5 19,8 20,10 z" fill="#5aac56" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Spotlight on stage -->
  <ellipse cx="150" cy="200" rx="130" ry="50" fill="url(#spotlight)" />
  
  <!-- Hill -->
  <ellipse cx="150" cy="250" rx="150" ry="80" fill="url(#hillGradient)" />
  
  <!-- Grass detail -->
  <ellipse cx="150" cy="250" rx="145" ry="75" fill="url(#grassPattern)" opacity="0.8" />
  
  <!-- Stage lighting effects -->
  <ellipse cx="100" cy="190" rx="80" ry="40" fill="url(#spotlight)" opacity="0.6" />
  <ellipse cx="200" cy="190" rx="80" ry="40" fill="url(#spotlight)" opacity="0.6" />
  
  <!-- Jellyfish 1 - Doing a pirouette -->
  <g transform="translate(100, 160)">
    <circle cx="0" cy="0" r="20" fill="url(#jellyGlow)" opacity="0.5" />
    <ellipse cx="0" cy="0" rx="15" ry="18" fill="url(#jellyBody1)" />
    <!-- Tentacles -->
    <path d="M-12,15 C-15,30 -20,40 -12,50" stroke="#cc99dd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3s" repeatCount="indefinite" 
        values="M-12,15 C-15,30 -20,40 -12,50;
                M-12,15 C-18,25 -22,38 -15,50;
                M-12,15 C-15,30 -20,40 -12,50" />
    </path>
    <path d="M-5,15 C-8,35 -3,45 -7,55" stroke="#cc99dd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3.2s" repeatCount="indefinite" 
        values="M-5,15 C-8,35 -3,45 -7,55;
                M-5,15 C-12,30 -8,50 -5,55;
                M-5,15 C-8,35 -3,45 -7,55" />
    </path>
    <path d="M5,15 C8,35 3,45 7,55" stroke="#cc99dd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="2.8s" repeatCount="indefinite" 
        values="M5,15 C8,35 3,45 7,55;
                M5,15 C12,30 8,50 5,55;
                M5,15 C8,35 3,45 7,55" />
    </path>
    <path d="M12,15 C15,30 20,40 12,50" stroke="#cc99dd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3.4s" repeatCount="indefinite" 
        values="M12,15 C15,30 20,40 12,50;
                M12,15 C18,25 22,38 15,50;
                M12,15 C15,30 20,40 12,50" />
    </path>
    <!-- Ballet arms -->
    <path d="M0,-5 C10,-20 25,-15 30,-10" stroke="#cc99dd" stroke-width="2" fill="none" />
    <path d="M0,-5 C-15,-8 -18,0 -25,-5" stroke="#cc99dd" stroke-width="2" fill="none" />
    <!-- Spinning animation -->
    <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="8s" repeatCount="indefinite" />
  </g>
  
  <!-- Jellyfish 2 - In mid-leap -->
  <g transform="translate(150, 130)">
    <circle cx="0" cy="0" r="20" fill="url(#jellyGlow)" opacity="0.5" />
    <ellipse cx="0" cy="0" rx="15" ry="18" fill="url(#jellyBody2)" />
    <!-- Tentacles -->
    <path d="M-12,15 C-15,30 -20,40 -12,50" stroke="#99ccdd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3.1s" repeatCount="indefinite" 
        values="M-12,15 C-15,30 -20,40 -12,50;
                M-12,15 C-18,25 -22,38 -15,50;
                M-12,15 C-15,30 -20,40 -12,50" />
    </path>
    <path d="M-5,15 C-8,35 -3,45 -7,55" stroke="#99ccdd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="2.9s" repeatCount="indefinite" 
        values="M-5,15 C-8,35 -3,45 -7,55;
                M-5,15 C-12,30 -8,50 -5,55;
                M-5,15 C-8,35 -3,45 -7,55" />
    </path>
    <path d="M5,15 C8,35 3,45 7,55" stroke="#99ccdd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3.3s" repeatCount="indefinite" 
        values="M5,15 C8,35 3,45 7,55;
                M5,15 C12,30 8,50 5,55;
                M5,15 C8,35 3,45 7,55" />
    </path>
    <path d="M12,15 C15,30 20,40 12,50" stroke="#99ccdd" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3s" repeatCount="indefinite" 
        values="M12,15 C15,30 20,40 12,50;
                M12,15 C18,25 22,38 15,50;
                M12,15 C15,30 20,40 12,50" />
    </path>
    <!-- Ballet arms -->
    <path d="M0,-5 C15,-15 20,-10 25,-15" stroke="#99ccdd" stroke-width="2" fill="none" />
    <path d="M0,-5 C-15,-15 -20,-10 -25,-15" stroke="#99ccdd" stroke-width="2" fill="none" />
    <!-- Bouncing animation -->
    <animate attributeName="cy" values="0;-10;0" dur="2s" repeatCount="indefinite" />
  </g>
  
  <!-- Jellyfish 3 - Doing an arabesque -->
  <g transform="translate(200, 170)">
    <circle cx="0" cy="0" r="20" fill="url(#jellyGlow)" opacity="0.5" />
    <ellipse cx="0" cy="0" rx="15" ry="18" fill="url(#jellyBody3)" />
    <!-- Tentacles -->
    <path d="M-12,15 C-15,30 -20,40 -12,50" stroke="#ffcc99" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="2.8s" repeatCount="indefinite" 
        values="M-12,15 C-15,30 -20,40 -12,50;
                M-12,15 C-18,25 -22,38 -15,50;
                M-12,15 C-15,30 -20,40 -12,50" />
    </path>
    <path d="M-5,15 C-8,35 -3,45 -7,55" stroke="#ffcc99" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3.5s" repeatCount="indefinite" 
        values="M-5,15 C-8,35 -3,45 -7,55;
                M-5,15 C-12,30 -8,50 -5,55;
                M-5,15 C-8,35 -3,45 -7,55" />
    </path>
    <path d="M5,15 C8,35 3,45 7,55" stroke="#ffcc99" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="3.2s" repeatCount="indefinite" 
        values="M5,15 C8,35 3,45 7,55;
                M5,15 C12,30 8,50 5,55;
                M5,15 C8,35 3,45 7,55" />
    </path>
    <path d="M12,15 C15,30 20,40 12,50" stroke="#ffcc99" stroke-width="1.5" fill="none">
      <animate attributeName="d" dur="2.9s" repeatCount="indefinite" 
        values="M12,15 C15,30 20,40 12,50;
                M12,15 C18,25 22,38 15,50;
                M12,15 C15,30 20,40 12,50" />
    </path>
    <!-- Ballet arms -->
    <path d="M0,-5 C20,-10 25,0 30,5" stroke="#ffcc99" stroke-width="2" fill="none" />
    <path d="M0,-5 C-10,-20 -20,-15 -25,-20" stroke="#ffcc99" stroke-width="2" fill="none" />
    <!-- Gentle swaying -->
    <animateTransform attributeName="transform" type="rotate" values="-5;5;-5" dur="4s" repeatCount="indefinite" additive="sum" />
  </g>
  
  <!-- Small decorative jellyfish -->
  <g transform="translate(70, 180) scale(0.6)">
    <circle cx="0" cy="0" r="15" fill="url(#jellyGlow)" opacity="0.4" />
    <ellipse cx="0" cy="0" rx="12" ry="14" fill="#ff99cc" />
    <!-- Tentacles -->
    <path d="M-8,10 C-10,25 -15,35 -8,40" stroke="#ffaade" stroke-width="1.2" fill="none">
      <animate attributeName="d" dur="2.5s" repeatCount="indefinite" 
        values="M-8,10 C-10,25 -15,35 -8,40;
                M-8,10 C-12,20 -16,30 -10,40;
                M-8,10 C-10,25 -15,35 -8,40" />
    </path>
    <path d="M8,10 C10,25 15,35 8,40" stroke="#ffaade" stroke-width="1.2" fill="none">
      <animate attributeName="d" dur="2.7s" repeatCount="indefinite" 
        values="M8,10 C10,25 15,35 8,40;
                M8,10 C12,20 16,30 10,40;
                M8,10 C10,25 15,35 8,40" />
    </path>
  </g>
  
  <!-- Small decorative jellyfish -->
  <g transform="translate(235, 180) scale(0.6)">
    <circle cx="0" cy="0" r="15" fill="url(#jellyGlow)" opacity="0.4" />
    <ellipse cx="0" cy="0" rx="12" ry="14" fill="#99ccff" />
    <!-- Tentacles -->
    <path d="M-8,10 C-10,25 -15,35 -8,40" stroke="#aaddff" stroke-width="1.2" fill="none">
      <animate attributeName="d" dur="2.6s" repeatCount="indefinite" 
        values="M-8,10 C-10,25 -15,35 -8,40;
                M-8,10 C-12,20 -16,30 -10,40;
                M-8,10 C-10,25 -15,35 -8,40" />
    </path>
    <path d="M8,10 C10,25 15,35 8,40" stroke="#aaddff" stroke-width="1.2" fill="none">
      <animate attributeName="d" dur="2.8s" repeatCount="indefinite" 
        values="M8,10 C10,25 15,35 8,40;
                M8,10 C12,20 16,30 10,40;
                M8,10 C10,25 15,35 8,40" />
    </path>
  </g>
  
  <!-- Floating music notes -->
  <g opacity="0.7">
    <path d="M80,110 C83,105 85,100 85,95 L85,80 L90,82 L90,97 C90,105 83,110 80,110 Z" fill="#fff">
      <animate attributeName="transform" attributeType="XML" type="translate" 
         values="0,0; 5,10; 0,20; -5,30; 0,40" dur="10s" repeatCount="indefinite"/>
    </path>
    <path d="M210,90 C213,85 215,80 215,75 L215,60 L220,62 L220,77 C220,85 213,90 210,90 Z" fill="#fff">
      <animate attributeName="transform" attributeType="XML" type="translate" 
         values="0,0; -5,10; 0,20; 5,30; 0,40" dur="8s" repeatCount="indefinite"/>
    </path>
    <path d="M180,70 C183,65 185,60 185,55 L185,40 L190,42 L190,57 C190,65 183,70 180,70 Z" fill="#fff">
      <animate attributeName="transform" attributeType="XML" type="translate" 
         values="0,0; 5,15; 0,30; -5,45; 0,60" dur="12s" repeatCount="indefinite"/>
    </path>
  </g>
  
  <!-- Additional atmospheric elements -->
  <circle cx="50" cy="50" r="2" fill="#fff" opacity="0.8">
    <animate attributeName="opacity" values="0.8;0.2;0.8" dur="3s" repeatCount="indefinite"/>
  </circle>
  <circle cx="230" cy="40" r="1.5" fill="#fff" opacity="0.7">
    <animate attributeName="opacity" values="0.7;0.3;0.7" dur="2.5s" repeatCount="indefinite"/>
  </circle>
  <circle cx="180" cy="60" r="1" fill="#fff" opacity="0.6">
    <animate attributeName="opacity" values="0.6;0.1;0.6" dur="4s" repeatCount="indefinite"/>
  </circle>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#FFDAB9"/>
    </radialGradient>
    <linearGradient id="grassGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </linearGradient>
    <radialGradient id="jellyGradient1" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="100%" stop-color="#FF1493"/>
    </radialGradient>
    <radialGradient id="jellyGradient2" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#00BFFF"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </radialGradient>
    <radialGradient id="jellyGradient3" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </radialGradient>
    <radialGradient id="jellyGradient4" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#4B0082"/>
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

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

  <!-- Grassy Hill -->
  <ellipse cx="150" cy="250" rx="150" ry="50" fill="url(#grassGradient)"/>

  <!-- Jellyfish 1 -->
  <g transform="translate(80,200)" filter="url(#glow)">
    <ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#jellyGradient1)" opacity="0.8"/>
    <path d="M-15,30 Q0,40 15,30" stroke="#FF1493" stroke-width="2" fill="none"/>
    <path d="M-10,35 Q0,45 10,35" stroke="#FF1493" stroke-width="2" fill="none"/>
    <path d="M-5,40 Q0,50 5,40" stroke="#FF1493" stroke-width="2" fill="none"/>
  </g>

  <!-- Jellyfish 2 -->
  <g transform="translate(120,190)" filter="url(#glow)">
    <ellipse cx="0" cy="0" rx="18" ry="28" fill="url(#jellyGradient2)" opacity="0.8"/>
    <path d="M-14,28 Q0,38 14,28" stroke="#1E90FF" stroke-width="2" fill="none"/>
    <path d="M-9,32 Q0,42 9,32" stroke="#1E90FF" stroke-width="2" fill="none"/>
    <path d="M-4,36 Q0,46 4,36" stroke="#1E90FF" stroke-width="2" fill="none"/>
  </g>

  <!-- Jellyfish 3 -->
  <g transform="translate(160,205)" filter="url(#glow)">
    <ellipse cx="0" cy="0" rx="22" ry="32" fill="url(#jellyGradient3)" opacity="0.8"/>
    <path d="M-16,32 Q0,42 16,32" stroke="#FFA500" stroke-width="2" fill="none"/>
    <path d="M-11,36 Q0,46 11,36" stroke="#FFA500" stroke-width="2" fill="none"/>
    <path d="M-6,40 Q0,50 6,40" stroke="#FFA500" stroke-width="2" fill="none"/>
  </g>

  <!-- Jellyfish 4 -->
  <g transform="translate(200,195)" filter="url(#glow)">
    <ellipse cx="0" cy="0" rx="19" ry="29" fill="url(#jellyGradient4)" opacity="0.8"/>
    <path d="M-13,29 Q0,39 13,29" stroke="#4B0082" stroke-width="2" fill="none"/>
    <path d="M-8,33 Q0,43 8,33" stroke="#4B0082" stroke-width="2" fill="none"/>
    <path d="M-3,37 Q0,47 3,37" stroke="#4B0082" stroke-width="2" fill="none"/>
  </g>

  <!-- Ballet Pose Lines -->
  <path d="M80,200 Q90,180 120,190" stroke="#ffffff" stroke-width="1" opacity="0.5"/>
  <path d="M160,205 Q170,185 200,195" stroke="#ffffff" stroke-width="1" opacity="0.5"/>

  <!-- Stars or Sparkles -->
  <circle cx="250" cy="50" r="2" fill="#FFFACD" opacity="0.8"/>
  <circle cx="60" cy="80" r="1.5" fill="#FFFACD" opacity="0.8"/>
  <circle cx="190" cy="30" r="2.5" fill="#FFFACD" opacity="0.8"/>
  <circle cx="220" cy="70" r="1" fill="#FFFACD" opacity="0.8"/>
</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 better represents the concept of 'jellyfish troupe performing ballet on a grassy hill' by incorporating jellyfish-like creatures with flowing tentacles that suggest movement, set against a hill with a clear sky, evoking an outdoor performance.

    The composition and color choices enhance the whimsical and ethereal quality of the scene.

    Player 2's image, while colorful, lacks the dynamic movement and specific jellyfish characteristics that align with the prompt.

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

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

Player 1
1
Player 2
1
Circles

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

Player 1
8
Player 2
4
Ellipses

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

Player 1
10
Player 2
5
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
26
Player 2
14
Groups

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

Player 1
6
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
7
Player 2
6
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
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
12
Player 2
10
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
22
Player 2
14

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
23
Player 2
14

Interactivity Metrics

Animations

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

Player 1
25
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
5
Player 2
4

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
73
Player 2
28
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
8
Player 2
7
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