Back

SVG Drawing Match #1750

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Juggling octopus wearing neon roller skates"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="glow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff00ff;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#00ffff;stop-opacity:0"/>
    </radialGradient>
    <filter id="neonBlur">
      <feGaussianBlur stdDeviation="2"/>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#1a1a2e"/>
  
  <!-- Octopus body -->
  <ellipse cx="150" cy="130" rx="45" ry="50" fill="#800080"/>
  
  <!-- Tentacles -->
  <path d="M120,150 Q90,200 70,220" stroke="#800080" stroke-width="15" fill="none"/>
  <path d="M130,150 Q110,210 100,240" stroke="#800080" stroke-width="15" fill="none"/>
  <path d="M140,150 Q140,200 150,240" stroke="#800080" stroke-width="15" fill="none"/>
  <path d="M160,150 Q160,200 170,230" stroke="#800080" stroke-width="15" fill="none"/>
  <path d="M180,150 Q190,200 200,220" stroke="#800080" stroke-width="15" fill="none"/>
  <path d="M110,150 Q60,180 40,190" stroke="#800080" stroke-width="15" fill="none"/>
  <path d="M190,150 Q220,180 240,190" stroke="#800080" stroke-width="15" fill="none"/>
  <path d="M170,150 Q200,190 220,200" stroke="#800080" stroke-width="15" fill="none"/>
  
  <!-- Juggling balls with glow -->
  <circle cx="100" cy="100" r="15" fill="#ff0066" filter="url(#neonBlur)"/>
  <circle cx="150" cy="70" r="15" fill="#00ff66" filter="url(#neonBlur)"/>
  <circle cx="200" cy="100" r="15" fill="#ff6600" filter="url(#neonBlur)"/>
  
  <!-- Roller skates -->
  <g transform="translate(70,220) rotate(-30)">
    <rect x="0" y="0" width="40" height="20" fill="#ff00ff" rx="5"/>
    <circle cx="10" cy="25" r="5" fill="#00ffff"/>
    <circle cx="30" cy="25" r="5" fill="#00ffff"/>
  </g>
  <g transform="translate(170,220) rotate(30)">
    <rect x="0" y="0" width="40" height="20" fill="#ff00ff" rx="5"/>
    <circle cx="10" cy="25" r="5" fill="#00ffff"/>
    <circle cx="30" cy="25" r="5" fill="#00ffff"/>
  </g>
  
  <!-- Eyes -->
  <circle cx="135" cy="120" r="8" fill="white"/>
  <circle cx="165" cy="120" r="8" fill="white"/>
  <circle cx="135" cy="120" r="4" fill="black"/>
  <circle cx="165" cy="120" r="4" fill="black"/>
  
  <!-- Glow effects -->
  <circle cx="150" cy="130" r="80" fill="url(#glow)" opacity="0.5"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(180,104,180);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(97,60,149);stop-opacity:1" />
    </radialGradient>
    <linearGradient id="neonSkate" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(0,255,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(0,128,128);stop-opacity:1" />
    </linearGradient>
    <pattern id="neonDots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="rgb(255,255,0)" />
    </pattern>
  </defs>
  <!-- Octopus Body -->
  <ellipse cx="150" cy="150" rx="50" ry="60" fill="url(#octopusGradient)" />
  <!-- Octopus Eyes -->
  <circle cx="130" cy="140" r="5" fill="white" />
  <circle cx="170" cy="140" r="5" fill="white" />
  <circle cx="131" cy="141" r="2" fill="black" />
  <circle cx="171" cy="141" r="2" fill="black" />
  <!-- Tentacles -->
  <path d="M150,210 Q130,240 120,230 Q110,220 130,210" fill="url(#octopusGradient)" />
  <path d="M150,210 Q170,240 180,230 Q190,220 170,210" fill="url(#octopusGradient)" />
  <path d="M150,210 Q120,270 110,260 Q100,250 130,240" fill="url(#octopusGradient)" />
  <path d="M150,210 Q180,270 190,260 Q200,250 170,240" fill="url(#octopusGradient)" />
  <path d="M150,210 Q150,280 140,270 Q130,260 150,250" fill="url(#octopusGradient)" />
  <path d="M150,210 Q150,280 160,270 Q170,260 150,250" fill="url(#octopusGradient)" />
  <!-- Roller Skates -->
  <ellipse cx="125" cy="235" rx="8" ry="4" fill="url(#neonSkate)" />
  <ellipse cx="175" cy="235" rx="8" ry="4" fill="url(#neonSkate)" />
  <ellipse cx="115" cy="265" rx="8" ry="4" fill="url(#neonSkate)" />
  <ellipse cx="185" cy="265" rx="8" ry="4" fill="url(#neonSkate)" />
  <ellipse cx="150" cy="270" rx="8" ry="4" fill="url(#neonSkate)" />
  <!-- Juggling Balls -->
  <circle cx="200" cy="100" r="10" fill="url(#neonDots)" />
  <circle cx="100" cy="100" r="10" fill="url(#neonDots)" />
  <circle cx="150" cy="70" r="10" fill="url(#neonDots)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image captures the theme more effectively with vibrant neon roller skates and a dynamic juggling action.

    The use of bright colors and a glowing effect enhances the visual appeal and creativity.

    Player 2's image, while technically sound, lacks the dynamic energy and neon emphasis present in Player 1's design.

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

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

Player 1
3
Player 2
Circles

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

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

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
2
Patterns

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

Player 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
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
1
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
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
2
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
16
Player 2
18
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
2
Player 2
3
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