Back

SVG Drawing Match #1606

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Cosmic octopus juggling planets in a starry sky"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#0B3D91"/>
      <stop offset="100%" stop-color="#000000"/>
    </radialGradient>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FF6F61"/>
      <stop offset="100%" stop-color="#FF3B2F"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#00CED1"/>
      <stop offset="100%" stop-color="#008B8B"/>
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="white"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.8"/>
  <ellipse cx="150" cy="100" rx="25" ry="25" fill="url(#planet1)"/>
  <ellipse cx="100" cy="150" rx="25" ry="25" fill="url(#planet2)"/>
  <ellipse cx="200" cy="150" rx="25" ry="25" fill="url(#planet3)"/>
  <path d="M150,180 C150,180 100,220 70,250 C70,250 90,260 110,250 C110,250 140,240 150,180" fill="#4B0082"/>
  <path d="M150,180 C150,180 200,220 230,250 C230,250 210,260 190,250 C190,250 160,240 150,180" fill="#4B0082"/>
  <path d="M150,180 C150,180 120,220 90,200 C90,200 100,210 110,200 C110,200 140,190 150,180" fill="#800080"/>
  <path d="M150,180 C150,180 180,220 210,200 C210,200 200,210 190,200 C190,200 160,190 150,180" fill="#800080"/>
  <circle cx="150" cy="180" r="40" fill="#483D8B"/>
  <circle cx="150" cy="180" r="30" fill="#6A5ACD"/>
  <circle cx="150" cy="180" r="20" fill="#9370DB"/>
  <circle cx="150" cy="180" r="10" fill="#BA55D3"/>
</svg>
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="#1a0933"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <radialGradient id="planet1" cx="30%" cy="30%" r="70%">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="100%" stop-color="#aa0000"/>
    </radialGradient>
    <radialGradient id="planet2" cx="40%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#4facfe"/>
      <stop offset="100%" stop-color="#00f2fe"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffd1ff"/>
      <stop offset="100%" stop-color="#fab1ff"/>
    </radialGradient>
    <radialGradient id="octopus" cx="60%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#9d4edd"/>
      <stop offset="100%" stop-color="#5a189a"/>
    </radialGradient>
  </defs>

  <rect x="0" y="0" width="300" height="300" fill="url(#space)"/>
  
  <!-- Stars -->
  <g fill="white">
    <circle cx="30" cy="40" r="1"/>
    <circle cx="130" cy="20" r="1.5"/>
    <circle cx="230" cy="60" r="1"/>
    <circle cx="280" cy="140" r="1.5"/>
    <circle cx="50" cy="200" r="1"/>
    <circle cx="160" cy="250" r="1.5"/>
    <circle cx="270" cy="220" r="1"/>
    <circle cx="90" cy="280" r="1.5"/>
    <!-- Add more stars -->
  </g>

  <!-- Octopus body -->
  <g transform="translate(150,150)">
    <ellipse cx="0" cy="0" rx="40" ry="50" fill="url(#octopus)"/>
    <!-- Tentacles -->
    <path d="M-20,40 Q-60,80 -40,120 T-60,180" stroke="url(#octopus)" fill="none" stroke-width="12"/>
    <path d="M0,40 Q-20,90 0,130 T-10,190" stroke="url(#octopus)" fill="none" stroke-width="12"/>
    <path d="M20,40 Q60,80 40,120 T60,180" stroke="url(#octopus)" fill="none" stroke-width="12"/>
    
    <!-- Eyes -->
    <circle cx="-15" cy="-10" r="8" fill="white"/>
    <circle cx="15" cy="-10" r="8" fill="white"/>
    <circle cx="-15" cy="-10" r="4" fill="black"/>
    <circle cx="15" cy="-10" r="4" fill="black"/>
  </g>

  <!-- Juggling Planets -->
  <g>
    <circle cx="80" cy="100" r="25" fill="url(#planet1)">
      <animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="150" cy="60" r="20" fill="url(#planet2)">
      <animate attributeName="cy" values="60;40;60" dur="2s" repeatCount="indefinite" begin="0.7s"/>
    </circle>
    <circle cx="220" cy="100" r="22" fill="url(#planet3)">
      <animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite" begin="1.4s"/>
    </circle>
  </g>

  <!-- Planet rings and details -->
  <ellipse cx="220" cy="100" rx="30" ry="8" fill="none" stroke="#fab1ff" stroke-width="2" transform="rotate(-15,220,100)">
    <animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite" begin="1.4s"/>
  </ellipse>
  
  <!-- Stardust -->
  <g opacity="0.5">
    <circle cx="100" cy="150" r="1" fill="#fff">
      <animate attributeName="r" values="1;2;1" dur="3s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="180" r="1" fill="#fff">
      <animate attributeName="r" values="1;2;1" dur="3s" repeatCount="indefinite" begin="1s"/>
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image more effectively captures the concept of a 'cosmic octopus juggling planets in a starry sky' by depicting an octopus with visible tentacles and planets, set against a starry background.

    The clear representation of the octopus and the planets enhances adherence to the prompt, while the playful expression and vibrant colors add to its visual appeal.

    Player 1's abstract representation lacks clarity in depicting an octopus or a cosmic theme.

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

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

Player 1
2
Player 2
1
Circles

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

Player 1
5
Player 2
17
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
13

Interactivity Metrics

Animations

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

Player 1
Player 2
6
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
16
Player 2
9
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
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.

Similar Challenges