Back

SVG Drawing Match #2772

May 24, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling flaming torches underwater."

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="backgroundGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001d3d"/>
      <stop offset="100%" stop-color="#003566"/>
    </linearGradient>
    <radialGradient id="octopusGradient" cx="0.5" cy="0.5" r="0.8">
      <stop offset="0%" stop-color="#FF6F61"/>
      <stop offset="100%" stop-color="#D84315"/>
    </radialGradient>
    <linearGradient id="torchGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FF8C00"/>
      <stop offset="100%" stop-color="#FF4500"/>
    </linearGradient>
    <radialGradient id="flameGradient" cx="0.5" cy="0.5" r="0.7">
      <stop offset="0%" stop-color="#FFFACD"/>
      <stop offset="100%" stop-color="#FF4500" stop-opacity="0.8"/>
    </radialGradient>
    <pattern id="seaweedPattern" patternUnits="userSpaceOnUse" width="20" height="60">
      <path d="M10,0 C15,10 5,20 10,30" stroke="#2E8B57" stroke-width="2" fill="none"/>
      <path d="M10,30 C15,40 5,50 10,60" stroke="#2E8B57" stroke-width="2" fill="none"/>
    </pattern>
  </defs>

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

  <!-- Seaweed -->
  <g>
    <use href="#seaweedPattern" transform="translate(50, 210) rotate(-30) scale(1.2)"/>
    <use href="#seaweedPattern" transform="translate(250, 220) rotate(30) scale(1)"/>
    <use href="#seaweedPattern" transform="translate(150, 230) rotate(-45) scale(0.8)"/>
  </g>

  <!-- Octopus Body -->
  <ellipse cx="150" cy="200" rx="40" ry="30" fill="url(#octopusGradient)" stroke="#A52A2A" stroke-width="2"/>

  <!-- Eyes -->
  <circle cx="140" cy="190" r="5" fill="#FFFFFF"/>
  <circle cx="160" cy="190" r="5" fill="#FFFFFF"/>
  <circle cx="140" cy="190" r="2" fill="#000000"/>
  <circle cx="160" cy="190" r="2" fill="#000000"/>

  <!-- Arms -->
  <g>
    <!-- Left Arms -->
    <path d="M110,200 Q100,180 90,190" fill="none" stroke="url(#octopusGradient)" stroke-width="5"/>
    <path d="M100,195 Q95,185 85,190" fill="none" stroke="url(#octopusGradient)" stroke-width="4"/>

    <!-- Right Arms -->
    <path d="M190,200 Q200,180 210,190" fill="none" stroke="url(#octopusGradient)" stroke-width="5"/>
    <path d="M200,195 Q205,185 215,190" fill="none" stroke="url(#octopusGradient)" stroke-width="4"/>

    <!-- Juggling Arms -->
    <path d="M130,200 Q120,160 100,170" fill="none" stroke="url(#octopusGradient)" stroke-width="4"/>
    <path d="M170,200 Q180,160 200,170" fill="none" stroke="url(#octopusGradient)" stroke-width="4"/>
  </g>

  <!-- Flaming Torches -->
  <g>
    <!-- Torch 1 -->
    <g>
      <rect x="95" y="170" width="4" height="20" fill="#8B4513"/>
      <path d="M97,170 Q100,160 103,170" fill="url(#flameGradient)" stroke="#FF6347" stroke-width="1"/>
    </g>
    <!-- Torch 2 -->
    <g>
      <rect x="195" y="170" width="4" height="20" fill="#8B4513"/>
      <path d="M197,170 Q200,160 203,170" fill="url(#flameGradient)" stroke="#FF6347" stroke-width="1"/>
    </g>
    <!-- Torch 3 -->
    <g>
      <rect x="145" y="150" width="4" height="20" fill="#8B4513"/>
      <path d="M147,150 Q150,140 153,150" fill="url(#flameGradient)" stroke="#FF6347" stroke-width="1"/>
    </g>
  </g>

  <!-- Bubbles -->
  <circle cx="60" cy="80" r="5" fill="rgba(255,255,255,0.7)"/>
  <circle cx="100" cy="50" r="3" fill="rgba(255,255,255,0.6)"/>
  <circle cx="200" cy="90" r="4" fill="rgba(255,255,255,0.7)"/>
  <circle cx="250" cy="60" r="2" fill="rgba(255,255,255,0.5)"/>

  <!-- Light Rays -->
  <radialGradient id="lightRayGradient" cx="0.5" cy="0.5" r="0.5">
    <stop offset="0%" stop-color="rgba(255,255,255,0.5)"/>
    <stop offset="100%" stop-color="rgba(255,255,255,0)"/>
  </radialGradient>
  <circle cx="150" cy="50" r="100" fill="url(#lightRayGradient)"/>
</svg>
SVG by Claude Opus 4 (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="waterGrad">
      <stop offset="0%" style="stop-color:#001f3f;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#000814;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="octopusGrad">
      <stop offset="0%" style="stop-color:#ff006e;stop-opacity:1"/>
      <stop offset="50%" style="stop-color:#c9184a;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#800f2f;stop-opacity:1"/>
    </radialGradient>
    <linearGradient id="fireGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ffbe0b;stop-opacity:1"/>
      <stop offset="30%" style="stop-color:#fb5607;stop-opacity:1"/>
      <stop offset="60%" style="stop-color:#ff006e;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#8338ec;stop-opacity:0.3"/>
    </linearGradient>
    <filter id="bubbles">
      <feTurbulence baseFrequency="0.02" numOctaves="1" result="turbulence"/>
      <feComposite in="turbulence" in2="SourceGraphic" operator="over"/>
    </filter>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <rect width="300" height="300" fill="url(#waterGrad)"/>
  
  <g opacity="0.3">
    <circle cx="50" cy="80" r="4" fill="#3a86ff" opacity="0.6">
      <animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/>
    </circle>
    <circle cx="120" cy="100" r="3" fill="#3a86ff" opacity="0.5">
      <animate attributeName="cy" values="100;30;100" dur="5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="90" r="5" fill="#3a86ff" opacity="0.7">
      <animate attributeName="cy" values="90;10;90" dur="3.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="120" r="3.5" fill="#3a86ff" opacity="0.6">
      <animate attributeName="cy" values="120;40;120" dur="4.5s" repeatCount="indefinite"/>
    </circle>
  </g>
  
  <g id="octopus" transform="translate(150, 180)">
    <ellipse cx="0" cy="0" rx="45" ry="35" fill="url(#octopusGrad)"/>
    
    <ellipse cx="-15" cy="-5" rx="8" ry="10" fill="#ffffff"/>
    <ellipse cx="15" cy="-5" rx="8" ry="10" fill="#ffffff"/>
    <circle cx="-15" cy="-5" r="5" fill="#000000"/>
    <circle cx="15" cy="-5" r="5" fill="#000000"/>
    
    <path d="M -40,20 Q -45,60 -35,80 Q -25,85 -30,70 Q -35,50 -30,30" fill="url(#octopusGrad)" stroke="none">
      <animateTransform attributeName="transform" type="rotate" values="0 -35 25;-10 -35 25;0 -35 25" dur="2s" repeatCount="indefinite"/>
    </path>
    <path d="M -25,25 Q -20,65 -10,75 Q 0,80 -5,65 Q -10,45 -15,30" fill="url(#octopusGrad)" stroke="none">
      <animateTransform attributeName="transform" type="rotate" values="0 -15 30;5 -15 30;0 -15 30" dur="2.5s" repeatCount="indefinite"/>
    </path>
    <path d="M -10,28 Q 0,68 10,78 Q 20,83 15,68 Q 5,48 0,32" fill="url(#octopusGrad)" stroke="none">
      <animateTransform attributeName="transform" type="rotate" values="0 0 30;-5 0 30;0 0 30" dur="2.2s" repeatCount="indefinite"/>
    </path>
    <path d="M 10,28 Q 20,68 30,75 Q 40,80 35,65 Q 25,45 15,30" fill="url(#octopusGrad)" stroke="none">
      <animateTransform attributeName="transform" type="rotate" values="0 15 30;10 15 30;0 15 30" dur="2.8s" repeatCount="indefinite"/>
    </path>
    <path d="M 25,25 Q 35,65 45,70 Q 55,75 50,60 Q 40,40 30,28" fill="url(#octopusGrad)" stroke="none">
      <animateTransform attributeName="transform" type="rotate" values="0 30 27;-8 30 27;0 30 27" dur="2.3s" repeatCount="indefinite"/>
    </path>
    <path d="M 35,20 Q 45,60 50,75 Q 55,85 60,70 Q 50,50 40,30" fill="url(#octopusGrad)" stroke="none">
      <animateTransform attributeName="transform" type="rotate" values="0 40 25;15 40 25;0 40 25" dur="2.6s" repeatCount="indefinite"/>
    </path>
    
    <path d="M -35,-20 Q -40,-50 -30,-70" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
    <path d="M 35,-20 Q 40,-50 30,-70" fill="none" stroke="url(#octopusGrad)" stroke-width="12" stroke-linecap="round"/>
  </g>
  
  <g id="torch1" transform="translate(80, 80)" filter="url(#glow)">
    <rect x="-5" y="0" width="10" height="30" fill="#8b4513" rx="2"/>
    <ellipse cx="0" cy="-5" rx="15" ry="20" fill="url(#fireGrad)" opacity="0.9">
      <animateTransform attributeName="transform" type="scale" values="1,1;1.1,1.2;1,1" dur="0.5s" repeatCount="indefinite"/>
    </ellipse>
    <animateTransform attributeName="transform" type="rotate" values="0;360" dur="3s" repeatCount="indefinite" additive="sum"/>
    <animateMotion path="M 0,0 Q 50,-30 100,0 Q 50,30 0,0" dur="3s" repeatCount="indefinite"/>
  </g>
  
  <g id="torch2" transform="translate(150, 60)" filter="url(#glow)">
    <rect x="-5" y="0" width="10" height="30" fill="#8b4513" rx="2"/>
    <ellipse cx="0" cy="-5" rx="15" ry="20" fill="url(#fireGrad)" opacity="0.9">
      <animateTransform attributeName="transform" type="scale" values="1,1;1.2,1.1;1,1" dur="0.6s" repeatCount="indefinite"/>
    </ellipse>
    <animateTransform attributeName="transform" type="rotate" values="0;-360" dur="3s" repeatCount="indefinite" additive="sum"/>
    <animateMotion path="M 0,0 Q -40,-40 -80,0 Q -40,40 0,0" dur="3s" repeatCount="indefinite" begin="1s"/>
  </g>
  
  <g id="torch3" transform="translate(220, 80)" filter="url(#glow)">
    <rect x="-5" y="0" width="10" height="30" fill="#8b4513" rx="2"/>
    <ellipse cx="0" cy="-5" rx="15" ry="20" fill="url(#fireGrad)" opacity="0.9">
      <animateTransform attributeName="transform" type="scale" values="1,1;1.15,1.15;1,1" dur="0.55s" repeatCount="indefinite"/>
    </ellipse>
    <animateTransform attributeName="transform" type="rotate" values="0;360" dur="3s" repeatCount="indefinite" additive="sum"/>
    <animateMotion path="M 0,0 Q -50,-30 -100,0 Q -50,30 0,0" dur="3s" repeatCount="indefinite" begin="2s"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Opus 4 (2025-05-14) Player 2

Judge's Analysis

    Player 2's submission better captures the idea of an octopus juggling flaming torches underwater.

    The vibrant, glowing torches add a strong visual appeal and align well with the prompt, while the octopus design is more dynamic and engaging.

    Player 1's submission, while simpler and clean, does not convey the flaming torches element as vividly or creatively as Player 2's does.

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

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

Player 1
4
Player 2
4
Circles

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

Player 1
9
Player 2
6
Ellipses

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

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

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

Player 1
6
Player 2
5

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

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
5

Interactivity Metrics

Animations

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

Player 1
Player 2
19
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
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
22
Player 2
28
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
5
Player 2
5
Use Elements

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

Player 1
3
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.