Back

SVG Drawing Match #485

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus wearing a top hat, juggling planets in a cosmic circus"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="planetGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#ff69b4"/>
      <stop offset="1" stop-color="#3333ff"/>
    </linearGradient>
    <linearGradient id="octopusGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" stop-color="#00bfff"/>
      <stop offset="1" stop-color="#ff69b4"/>
    </linearGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#000000"/>
      <stop offset="1" stop-color="#696969"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="#1e1e1e"/>
  <!-- Top Hat -->
  <path d="M150 50 Q150 10 170 10 L230 10 Q250 10 250 50 L250 80 Q250 120 150 120 Q50 120 50 80 L50 50 Q50 10 70 10 L130 10 Q150 10 150 50 Z" fill="url(#hatGradient)"/>
  <!-- Octopus Body -->
  <circle cx="150" cy="150" r="50" fill="url(#octopusGradient)"/>
  <!-- Octopus Eyes -->
  <circle cx="140" cy="130" r="5" fill="#ffffff"/>
  <circle cx="160" cy="130" r="5" fill="#ffffff"/>
  <circle cx="140" cy="130" r="2" fill="#000000"/>
  <circle cx="160" cy="130" r="2" fill="#000000"/>
  <!-- Octopus Arms -->
  <path d="M150 150 C100 120 80 160 100 200" stroke="#ffffff" stroke-width="3" fill="none"/>
  <path d="M150 150 C200 120 220 160 200 200" stroke="#ffffff" stroke-width="3" fill="none"/>
  <path d="M150 150 C100 180 80 220 100 240" stroke="#ffffff" stroke-width="3" fill="none"/>
  <path d="M150 150 C200 180 220 220 200 240" stroke="#ffffff" stroke-width="3" fill="none"/>
  <!-- Planets -->
  <circle cx="120" cy="80" r="15" fill="url(#planetGradient)"/>
  <circle cx="180" cy="80" r="15" fill="url(#planetGradient)"/>
  <circle cx="150" cy="100" r="15" fill="url(#planetGradient)"/>
  <!-- Stars -->
  <circle cx="50" cy="50" r="3" fill="#ffffff"/>
  <circle cx="250" cy="50" r="3" fill="#ffffff"/>
  <circle cx="25" cy="250" r="3" fill="#ffffff"/>
  <circle cx="275" cy="250" r="3" fill="#ffffff"/>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with stars -->
  <defs>
    <radialGradient id="cosmic" cx="50%" cy="50%" r="80%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1a0033" />
      <stop offset="70%" stop-color="#0c001a" />
      <stop offset="100%" stop-color="#000000" />
    </radialGradient>
    
    <radialGradient id="spotlight" cx="50%" cy="10%" r="90%" fx="50%" fy="10%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.3)" />
      <stop offset="100%" stop-color="rgba(255,255,255,0)" />
    </radialGradient>
    
    <linearGradient id="tentacleGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#9932CC" />
      <stop offset="100%" stop-color="#800080" />
    </linearGradient>
    
    <linearGradient id="hatGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#222222" />
      <stop offset="100%" stop-color="#000000" />
    </linearGradient>
    
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#ff9933" />
      <stop offset="100%" stop-color="#cc6600" />
    </radialGradient>
    
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#6699ff" />
      <stop offset="100%" stop-color="#0033cc" />
    </radialGradient>
    
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#66cc66" />
      <stop offset="100%" stop-color="#006600" />
    </radialGradient>
    
    <radialGradient id="planet4" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#cc6699" />
      <stop offset="100%" stop-color="#993366" />
    </radialGradient>
  </defs>
  
  <!-- Cosmic Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#cosmic)" />
  
  <!-- Spotlight -->
  <ellipse cx="150" cy="150" rx="200" ry="200" fill="url(#spotlight)" />
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="20" cy="30" r="1" fill="white" />
    <circle cx="40" cy="70" r="0.8" fill="white" />
    <circle cx="60" cy="20" r="1.2" fill="white" />
    <circle cx="100" cy="50" r="0.6" fill="white" />
    <circle cx="120" cy="80" r="1" fill="white" />
    <circle cx="180" cy="20" r="0.7" fill="white" />
    <circle cx="200" cy="60" r="1.1" fill="white" />
    <circle cx="250" cy="30" r="0.9" fill="white" />
    <circle cx="270" cy="80" r="1.3" fill="white" />
    <circle cx="30" cy="130" r="0.8" fill="white" />
    <circle cx="80" cy="180" r="1" fill="white" />
    <circle cx="220" cy="160" r="0.7" fill="white" />
    <circle cx="260" cy="250" r="1.2" fill="white" />
    <circle cx="170" cy="280" r="0.9" fill="white" />
    <circle cx="60" cy="260" r="1.1" fill="white" />
    <circle cx="23" cy="190" r="0.6" fill="white" />
    <circle cx="280" cy="190" r="1" fill="white" />
    <circle cx="150" cy="40" r="1.4" fill="white" />
    <circle cx="230" cy="110" r="0.8" fill="white" />
  </g>
  
  <!-- Planets in motion (spinning/juggling) -->
  <g id="planets">
    <circle cx="110" cy="90" r="18" fill="url(#planet1)">
      <animateTransform attributeName="transform" type="rotate" from="0 110 90" to="360 110 90" dur="20s" repeatCount="indefinite" />
    </circle>
    <ellipse cx="110" cy="90" rx="20" ry="5" fill="none" stroke="#ffcc99" stroke-width="1" opacity="0.7">
      <animateTransform attributeName="transform" type="rotate" from="0 110 90" to="360 110 90" dur="20s" repeatCount="indefinite" />
    </ellipse>
    
    <circle cx="210" cy="85" r="15" fill="url(#planet2)">
      <animateTransform attributeName="transform" type="rotate" from="0 210 85" to="360 210 85" dur="15s" repeatCount="indefinite" />
    </circle>
    <ellipse cx="210" cy="85" rx="18" ry="4" fill="none" stroke="#99ccff" stroke-width="0.8" opacity="0.7">
      <animateTransform attributeName="transform" type="rotate" from="30 210 85" to="390 210 85" dur="15s" repeatCount="indefinite" />
    </ellipse>
    
    <circle cx="160" cy="60" r="12" fill="url(#planet3)">
      <animateTransform attributeName="transform" type="rotate" from="0 160 60" to="360 160 60" dur="12s" repeatCount="indefinite" />
    </circle>
    <circle cx="160" cy="60" r="15" fill="none" stroke="#99ff99" stroke-width="0.5" opacity="0.7">
      <animateTransform attributeName="transform" type="rotate" from="60 160 60" to="420 160 60" dur="12s" repeatCount="indefinite" />
    </circle>
    
    <circle cx="90" cy="60" r="10" fill="url(#planet4)">
      <animateTransform attributeName="transform" type="rotate" from="0 90 60" to="360 90 60" dur="10s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- Octopus body -->
  <g id="octopus">
    <ellipse cx="150" cy="180" rx="45" ry="40" fill="url(#tentacleGrad)" />
    
    <!-- Octopus eyes -->
    <circle cx="135" cy="170" r="8" fill="white" />
    <circle cx="165" cy="170" r="8" fill="white" />
    <circle cx="135" cy="170" r="4" fill="black" />
    <circle cx="165" cy="170" r="4" fill="black" />
    <circle cx="132" cy="167" r="2" fill="white" />
    <circle cx="162" cy="167" r="2" fill="white" />
    
    <!-- Smile -->
    <path d="M135,185 Q150,195 165,185" fill="none" stroke="#400040" stroke-width="2" stroke-linecap="round" />
    
    <!-- Top hat -->
    <rect x="125" y="120" width="50" height="5" rx="2" fill="#222222" />
    <rect x="130" y="90" width="40" height="30" rx="3" fill="url(#hatGrad)" />
    <rect x="130" y="115" width="40" height="5" fill="#333333" />
    <path d="M130,115 Q150,120 170,115" fill="none" stroke="#444444" stroke-width="1" />
    <ellipse cx="150" cy="90" rx="20" ry="5" fill="#222222" />
    <rect x="148" y="90" width="4" height="20" fill="#ff5555" />
    
    <!-- Tentacles -->
    <path d="M110,180 Q85,210 70,200 T60,230" fill="none" stroke="url(#tentacleGrad)" stroke-width="12" stroke-linecap="round">
      <animate attributeName="d" dur="5s" repeatCount="indefinite" 
        values="M110,180 Q85,210 70,200 T60,230;
                M110,180 Q85,220 75,205 T60,240;
                M110,180 Q85,210 70,200 T60,230" />
    </path>
    
    <path d="M100,195 Q75,220 60,225 T30,250" fill="none" stroke="url(#tentacleGrad)" stroke-width="10" stroke-linecap="round">
      <animate attributeName="d" dur="6s" repeatCount="indefinite" 
        values="M100,195 Q75,220 60,225 T30,250;
                M100,195 Q70,230 65,230 T40,260;
                M100,195 Q75,220 60,225 T30,250" />
    </path>
    
    <path d="M120,210 Q120,240 110,250 T100,280" fill="none" stroke="url(#tentacleGrad)" stroke-width="9" stroke-linecap="round">
      <animate attributeName="d" dur="5.5s" repeatCount="indefinite" 
        values="M120,210 Q120,240 110,250 T100,280;
                M120,210 Q115,250 105,255 T110,290;
                M120,210 Q120,240 110,250 T100,280" />
    </path>
    
    <path d="M150,220 Q150,250 155,260 T160,300" fill="none" stroke="url(#tentacleGrad)" stroke-width="11" stroke-linecap="round">
      <animate attributeName="d" dur="7s" repeatCount="indefinite" 
        values="M150,220 Q150,250 155,260 T160,300;
                M150,220 Q145,255 150,270 T150,310;
                M150,220 Q150,250 155,260 T160,300" />
    </path>
    
    <path d="M180,210 Q190,240 195,250 T210,280" fill="none" stroke="url(#tentacleGrad)" stroke-width="10" stroke-linecap="round">
      <animate attributeName="d" dur="6.5s" repeatCount="indefinite" 
        values="M180,210 Q190,240 195,250 T210,280;
                M180,210 Q185,250 190,260 T200,290;
                M180,210 Q190,240 195,250 T210,280" />
    </path>
    
    <path d="M195,195 Q220,220 230,225 T260,250" fill="none" stroke="url(#tentacleGrad)" stroke-width="8" stroke-linecap="round">
      <animate attributeName="d" dur="5.2s" repeatCount="indefinite" 
        values="M195,195 Q220,220 230,225 T260,250;
                M195,195 Q225,230 235,230 T270,260;
                M195,195 Q220,220 230,225 T260,250" />
    </path>
    
    <path d="M190,180 Q215,200 230,195 T260,210" fill="none" stroke="url(#tentacleGrad)" stroke-width="12" stroke-linecap="round">
      <animate attributeName="d" dur="4.8s" repeatCount="indefinite" 
        values="M190,180 Q215,200 230,195 T260,210;
                M190,180 Q225,210 235,200 T270,220;
                M190,180 Q215,200 230,195 T260,210" />
    </path>
    
    <!-- Juggling paths (animated dashed lines) -->
    <path d="M90,60 Q120,10 160,60" fill="none" stroke="#ffffff" stroke-width="0.7" stroke-dasharray="3,3" opacity="0.5">
      <animate attributeName="stroke-dashoffset" from="0" to="60" dur="2s" repeatCount="indefinite" />
    </path>
    
    <path d="M160,60 Q180,10 210,85" fill="none" stroke="#ffffff" stroke-width="0.7" stroke-dasharray="3,3" opacity="0.5">
      <animate attributeName="stroke-dashoffset" from="0" to="60" dur="2s" repeatCount="indefinite" />
    </path>
    
    <path d="M210,85 Q190,150 110,90" fill="none" stroke="#ffffff" stroke-width="0.7" stroke-dasharray="3,3" opacity="0.5">
      <animate attributeName="stroke-dashoffset" from="0" to="60" dur="2s" repeatCount="indefinite" />
    </path>
    
    <path d="M110,90 Q60,130 90,60" fill="none" stroke="#ffffff" stroke-width="0.7" stroke-dasharray="3,3" opacity="0.5">
      <animate attributeName="stroke-dashoffset" from="0" to="60" dur="2s" repeatCount="indefinite" />
    </path>
  </g>
  
  <!-- Circus ring -->
  <ellipse cx="150" cy="270" rx="120" ry="20" fill="none" stroke="#ff9933" stroke-width="2" />
  <ellipse cx="150" cy="270" rx="110" ry="18" fill="none" stroke="#ffcc66" stroke-width="1" />
  
  <!-- Sparkles -->
  <g id="sparkles">
    <path d="M50,120 L55,125 L50,130 L45,125 Z" fill="#ffff99">
      <animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite" begin="0.1s" />
    </path>
    <path d="M250,100 L255,105 L250,110 L245,105 Z" fill="#ffff99">
      <animate attributeName="opacity" values="0;1;0" dur="1.8s" repeatCount="indefinite" begin="0.3s" />
    </path>
    <path d="M70,230 L75,235 L70,240 L65,235 Z" fill="#ffff99">
      <animate attributeName="opacity" values="0;1;0" dur="1.3s" repeatCount="indefinite" begin="0.5s" />
    </path>
    <path d="M230,210 L235,215 L230,220 L225,215 Z" fill="#ffff99">
      <animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite" begin="0.7s" />
    </path>
    <path d="M150,20 L155,25 L150,30 L145,25 Z" fill="#ffff99">
      <animate attributeName="opacity" values="0;1;0" dur="1.6s" repeatCount="indefinite" begin="0.9s" />
    </path>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's image more effectively captures the whimsical idea of an octopus in a cosmic circus.

    The depiction includes clear visual elements of a top hat and multiple planets being juggled, which adheres closely to the prompt.

    The vibrant colors and detailed background add to the overall visual appeal and creativity of the piece.

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
18
Player 2
60
Rectangles

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

Player 1
1
Player 2
5
Circles

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

Player 1
12
Player 2
30
Ellipses

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

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

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
18

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
26

Interactivity Metrics

Animations

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

Player 1
Player 2
23
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
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
20
Player 2
58
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
3
Player 2
8
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