Back

SVG Drawing Match #2770

May 24, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets under the ocean."

SVG by Claude Opus 4 Thinking (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="oceanBg" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0a4d8a;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#021830;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="octopusGrad">
      <stop offset="0%" style="stop-color:#ff6b9d;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#c44569;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planet1">
      <stop offset="0%" style="stop-color:#ffd93d;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff6b35;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planet2">
      <stop offset="0%" style="stop-color:#6bcf7f;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1e8449;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planet3">
      <stop offset="0%" style="stop-color:#e8c4f4;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planet4">
      <stop offset="0%" style="stop-color:#7dd3fc;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0891b2;stop-opacity:1" />
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="rings" patternUnits="userSpaceOnUse" width="40" height="40">
      <ellipse cx="20" cy="20" rx="18" ry="8" fill="none" stroke="#f8d7a4" stroke-width="2" opacity="0.6"/>
    </pattern>
  </defs>
  
  <rect width="300" height="300" fill="url(#oceanBg)"/>
  
  <!-- Light rays -->
  <path d="M50 0 L30 300 M100 0 L90 300 M200 0 L210 300" stroke="#1e6ba8" stroke-width="2" opacity="0.3"/>
  
  <!-- Seaweed -->
  <path d="M20 300 Q 15 250 25 200 Q 20 150 30 100" fill="none" stroke="#2d5016" stroke-width="4" opacity="0.6"/>
  <path d="M280 300 Q 275 260 285 220 Q 280 180 290 140" fill="none" stroke="#2d5016" stroke-width="4" opacity="0.6"/>
  
  <!-- Octopus body -->
  <ellipse cx="150" cy="220" rx="45" ry="40" fill="url(#octopusGrad)" filter="url(#glow)"/>
  
  <!-- Octopus eyes -->
  <ellipse cx="135" cy="210" rx="12" ry="15" fill="white"/>
  <ellipse cx="165" cy="210" rx="12" ry="15" fill="white"/>
  <circle cx="138" cy="213" r="8" fill="black"/>
  <circle cx="168" cy="213" r="8" fill="black"/>
  <circle cx="140" cy="211" r="3" fill="white"/>
  <circle cx="170" cy="211" r="3" fill="white"/>
  
  <!-- Octopus tentacles -->
  <path d="M120 240 Q 80 220 60 180 Q 50 150 70 120" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  <path d="M130 245 Q 100 230 90 200 Q 85 170 100 140" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  <path d="M140 248 Q 120 240 115 220 Q 110 200 120 180" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  <path d="M150 250 Q 145 230 150 210 Q 155 190 160 170" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  <path d="M160 248 Q 180 240 185 220 Q 190 200 180 180" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  <path d="M170 245 Q 200 230 210 200 Q 215 170 200 140" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  <path d="M180 240 Q 220 220 240 180 Q 250 150 230 120" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  <path d="M190 235 Q 210 225 220 210 Q 230 195 225 180" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  
  <!-- Planets -->
  <circle cx="70" cy="120" r="18" fill="url(#planet1)" filter="url(#glow)"/>
  <circle cx="100" cy="140" r="15" fill="url(#planet2)" filter="url(#glow)"/>
  <circle cx="120" cy="180" r="12" fill="url(#planet3)" filter="url(#glow)"/>
  <circle cx="160" cy="170" r="16" fill="url(#planet4)" filter="url(#glow)"/>
  <circle cx="180" cy="180" r="14" fill="url(#planet1)" filter="url(#glow)"/>
  <circle cx="200" cy="140" r="15" fill="url(#planet2)" filter="url(#glow)"/>
  <circle cx="230" cy="120" r="17" fill="url(#planet3)" filter="url(#glow)"/>
  <circle cx="225" cy="180" r="13" fill="url(#planet4)" filter="url(#glow)"/>
  
  <!-- Saturn-like rings on some planets -->
  <ellipse cx="70" cy="120" rx="28" ry="8" fill="url(#rings)" opacity="0.8"/>
  <ellipse cx="180" cy="180" rx="24" ry="7" fill="url(#rings)" opacity="0.8"/>
  
  <!-- Bubbles -->
  <circle cx="50" cy="80" r="5" fill="white" opacity="0.3"/>
  <circle cx="250" cy="100" r="4" fill="white" opacity="0.3"/>
  <circle cx="150" cy="50" r="6" fill="white" opacity="0.3"/>
  <circle cx="80" cy="40" r="3" fill="white" opacity="0.3"/>
  <circle cx="220" cy="60" r="4" fill="white" opacity="0.3"/>
  <circle cx="180" cy="90" r="3" fill="white" opacity="0.3"/>
  <circle cx="120" cy="100" r="4" fill="white" opacity="0.3"/>
  
  <!-- Motion lines for juggling effect -->
  <path d="M70 120 Q 85 100 100 140" fill="none" stroke="white" stroke-width="1" opacity="0.4" stroke-dasharray="2,3"/>
  <path d="M100 140 Q 110 120 120 180" fill="none" stroke="white" stroke-width="1" opacity="0.4" stroke-dasharray="2,3"/>
  <path d="M200 140 Q 215 110 230 120" fill="none" stroke="white" stroke-width="1" opacity="0.4" stroke-dasharray="2,3"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="oceanGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#0077be; stop-opacity:0.9" />
      <stop offset="100%" style="stop-color:#004f7c; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffcc00" />
      <stop offset="100%" style="stop-color:#ff9900" />
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff6699" />
      <stop offset="100%" style="stop-color:#ff3366" />
    </radialGradient>
    <radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#33cc33" />
      <stop offset="100%" style="stop-color:#009900" />
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" />
      <feOffset dx="3" dy="3" result="offsetblur" />
      <feFlood flood-color="rgba(0,0,0,0.5)" />
      <feComposite in2="offsetblur" operator="in" />
      <feMerge>
        <feMergeNode />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#oceanGradient)" />
  <g transform="translate(150,150)">
    <g filter="url(#shadow)">
      <path d="M-30,20 C-70,-50 70,-50 30,20 C20,50 -20,50 -30,20 Z" fill="#ff4d4d" />
    </g>
    <g transform="scale(0.8)">
      <path d="M-30,20 C-70,-50 70,-50 30,20 C20,50 -20,50 -30,20 Z" fill="#ff4d4d" />
    </g>
    <path d="M-30,20 C-70,-50 70,-50 30,20 C20,50 -20,50 -30,20 Z" fill="#e60000" />
    <g>
      <circle cx="70" cy="-70" r="15" fill="url(#planetGradient1)" />
      <circle cx="-80" cy="-50" r="20" fill="url(#planetGradient2)" />
      <circle cx="50" cy="-60" r="10" fill="url(#planetGradient3)" />
    </g>
    <g>
      <path d="M60,20 Q40,15 70,10" fill="none" stroke="#fff" stroke-width="2" />
      <path d="M30,40 Q15,30 45,30" fill="none" stroke="#fff" stroke-width="2" />
      <path d="M80,-10 Q70,-5 95,0" fill="none" stroke="#fff" stroke-width="2" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Opus 4 Thinking (2025-05-14) Player 1

Judge's Analysis

    Player 1's submission is more detailed and adheres closely to the prompt, depicting a clear octopus juggling planets underwater with vibrant colors and a playful expression.

    Player 2's submission, while abstract, lacks sufficient detail or elements to convey the concept effectively, making it less visually engaging and less aligned 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
40
Player 2
10
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
19
Player 2
3
Ellipses

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

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

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

Player 1
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
6
Player 2
4
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
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
16
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
15
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
3

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
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
42
Player 2
18
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

Player 1
8
Player 2
5
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.