Back

SVG Drawing Match #1541

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling planets in space"

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="space" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#1a0b2e"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
    <radialGradient id="planet1" cx="40%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="100%" stop-color="#ee5253"/>
    </radialGradient>
    <radialGradient id="planet2" cx="40%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#4bcffa"/>
      <stop offset="100%" stop-color="#0fbcf9"/>
    </radialGradient>
    <radialGradient id="planet3" cx="40%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#ffd32a"/>
      <stop offset="100%" stop-color="#ffb142"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#space)"/>
  
  <!-- Stars -->
  <g fill="white">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="100" cy="80" r="1.5"/>
    <circle cx="200" cy="60" r="1"/>
    <circle cx="250" cy="90" r="1.2"/>
    <circle cx="80" cy="200" r="1"/>
    <circle cx="150" cy="250" r="1.5"/>
    <circle cx="220" cy="180" r="1"/>
    <circle cx="40" cy="150" r="1.2"/>
  </g>

  <!-- Octopus body -->
  <path d="M150,150 Q180,130 190,160 T150,190" fill="#6c5ce7" filter="url(#glow)"/>
  
  <!-- Tentacles -->
  <g stroke="#6c5ce7" fill="none" stroke-width="8" stroke-linecap="round">
    <path d="M150,170 Q100,200 80,160 T60,120" filter="url(#glow)"/>
    <path d="M150,170 Q200,220 220,180 T240,140" filter="url(#glow)"/>
    <path d="M150,170 Q130,240 160,260 T200,270" filter="url(#glow)"/>
    <path d="M150,170 Q170,240 140,260 T100,270" filter="url(#glow)"/>
    <path d="M150,170 Q80,160 60,180 T40,220" filter="url(#glow)"/>
    <path d="M150,170 Q220,160 240,180 T260,220" filter="url(#glow)"/>
  </g>

  <!-- Planets -->
  <circle cx="100" cy="100" r="20" fill="url(#planet1)" filter="url(#glow)">
    <animate attributeName="cy" values="100;90;100" dur="2s" repeatCount="indefinite"/>
  </circle>
  <circle cx="200" cy="120" r="15" fill="url(#planet2)" filter="url(#glow)">
    <animate attributeName="cy" values="120;130;120" dur="1.8s" repeatCount="indefinite"/>
  </circle>
  <circle cx="150" cy="80" r="25" fill="url(#planet3)" filter="url(#glow)">
    <animate attributeName="cy" values="80;70;80" dur="2.2s" repeatCount="indefinite"/>
  </circle>

  <!-- Octopus eyes -->
  <circle cx="145" cy="160" r="5" fill="white"/>
  <circle cx="165" cy="160" r="5" fill="white"/>
  <circle cx="145" cy="160" r="2" fill="black"/>
  <circle cx="165" cy="160" r="2" fill="black"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">

  <!-- Background space with starry pattern -->
  <rect width="100%" height="100%" fill="navy" />
  <defs>
    <pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.5" fill="white" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#stars)" />

  <!-- Octopus body -->
  <ellipse cx="150" cy="200" rx="50" ry="100" fill="#9f8f74" />

  <!-- Octopus eyes -->
  <circle cx="130" cy="180" r="5" fill="white" />
  <circle cx="170" cy="180" r="5" fill="white" />

  <!-- Juggling planets -->
  <circle cx="70" cy="90" r="20" fill="#ff5757" />
  <circle cx="130" cy="120" r="15" fill="#59cd90" />
  <circle cx="190" cy="70" r="25" fill="#68a8e6" />

  <!-- Octopus tentacles -->
  <path d="M120,270 Q100,280 100,310 Q110,290 120,300 Q130,290 140,310 Q140,280 120,270 Z" fill="#9f8f74" />
  <path d="M160,270 Q140,280 140,310 Q150,290 160,300 Q170,290 180,310 Q180,280 160,270 Z" fill="#9f8f74" />
  <path d="M200,270 Q180,280 180,310 Q190,290 200,300 Q210,290 220,310 Q220,280 200,270 Z" fill="#9f8f74" />

</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 features a more dynamic and colorful depiction of an octopus juggling planets, with a vibrant color palette and a clear representation of the octopus' arms in action.

    The use of a dark space-like background enhances the composition and adheres closely to the prompt.

    In contrast, Player 2's image lacks the same level of creativity and detail in both the octopus design and the depiction of the planets.

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
23
Player 2
12
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
15
Player 2
6
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
6

Interactivity Metrics

Animations

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

Player 1
3
Player 2
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
21
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
5
Player 2
1
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