Back

SVG Drawing Match #830

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow octopus juggling planets under a starry night sky"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Starry Night Background Gradient -->
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#001D3D" />
      <stop offset="100%" stop-color="#000814" />
    </radialGradient>
    <!-- Rainbow Gradient for Octopus Fins -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16%" stop-color="#FF7F00"/>
      <stop offset="33%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66%" stop-color="#0000FF"/>
      <stop offset="83%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8B00FF"/>
    </linearGradient>
    <!-- Planet Gradients -->
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#00FFFF"/>
      <stop offset="100%" stop-color="#00008B"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ADFF2F"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
    <!-- Star Pattern -->
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="3" height="3">
      <circle cx="1.5" cy="1.5" r="0.5" fill="white" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Starry Sky Overlay -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" opacity="0.4" />

  <!-- Planets being juggled -->
  <g id="planets">
    <!-- Planet 1 -->
    <circle cx="80" cy="80" r="15" fill="url(#planet1)" stroke="white" stroke-width="1"/>
    <!-- Planet 2 -->
    <circle cx="220" cy="70" r="12" fill="url(#planet2)" stroke="white" stroke-width="1"/>
    <!-- Planet 3 -->
    <circle cx="150" cy="140" r="18" fill="url(#planet3)" stroke="white" stroke-width="1"/>
  </g>
  
  <!-- Octopus -->
  <g id="octopus">
    <!-- Head / body -->
    <ellipse cx="150" cy="200" rx="30" ry="35" fill="url(#rainbowGradient)" stroke="black" stroke-width="1"/>
    <!-- Eyes -->
    <ellipse cx="140" cy="190" rx="4" ry="6" fill="white"/>
    <ellipse cx="160" cy="190" rx="4" ry="6" fill="white"/>
    <circle cx="140" cy="190" r="2" fill="black"/>
    <circle cx="160" cy="190" r="2" fill="black"/>
    
    <!-- Tentacles -->
    <g id="tentacles">
      <!-- Tentacle 1 -->
      <path d="M130,230 C110,240 100,260 110,280" fill="none" stroke="url(#rainbowGradient)" stroke-width="5" stroke-linecap="round"/>
      <!-- Tentacle 2 -->
      <path d="M150,230 C150,240 140,260 145,280" fill="none" stroke="url(#rainbowGradient)" stroke-width="5" stroke-linecap="round"/>
      <!-- Tentacle 3 -->
      <path d="M170,230 C190,240 200,260 190,280" fill="none" stroke="url(#rainbowGradient)" stroke-width="5" stroke-linecap="round"/>
      <!-- Tentacle 4 (Upper left) -->
      <path d="M125,210 C105,205 90,190 100,170" fill="none" stroke="url(#rainbowGradient)" stroke-width="4" stroke-linecap="round"/>
      <!-- Tentacle 5 (Upper right) -->
      <path d="M175,210 C195,205 210,190 200,170" fill="none" stroke="url(#rainbowGradient)" stroke-width="4" stroke-linecap="round"/>
      <!-- Additional small tentacles can be added -->
      <!-- Tentacle 6 -->
      <path d="M150,220 C130,215 120,230 125,250" fill="none" stroke="url(#rainbowGradient)" stroke-width="4" stroke-linecap="round"/>
      <!-- Tentacle 7 -->
      <path d="M150,220 C170,215 180,230 175,250" fill="none" stroke="url(#rainbowGradient)" stroke-width="4" stroke-linecap="round"/>
    </g>
  </g>
  
  <!-- Juggling motion lines -->
  <g id="motion" stroke="white" stroke-dasharray="3,3" stroke-width="1">
    <path d="M80,80 L140,190" />
    <path d="M220,70 L160,190" />
    <path d="M150,140 L150,190" />
  </g>
  
  <!-- Optional: Comet shooting star -->
  <path d="M250,30 L245,35 L240,30" fill="white" opacity="0.8"/>
  
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry Night Sky Background -->
  <defs>
    <radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" style="stop-color:#0b0b2d;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#1a1a4a;stop-opacity:1"/>
    </radialGradient>
    
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff0000;stop-opacity:1"/>
      <stop offset="20%" style="stop-color:#ff9900;stop-opacity:1"/>
      <stop offset="40%" style="stop-color:#ffff00;stop-opacity:1"/>
      <stop offset="60%" style="stop-color:#33ff00;stop-opacity:1"/>
      <stop offset="80%" style="stop-color:#0099ff;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4b0082;stop-opacity:1"/>
    </linearGradient>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#nightSky)"/>

  <!-- Stars -->
  <g id="stars" transform="translate(0,0)">
    <circle cx="30" cy="30" r="1" fill="white"/>
    <circle cx="80" cy="20" r="1" fill="white"/>
    <circle cx="120" cy="40" r="1" fill="white"/>
    <circle cx="200" cy="10" r="1" fill="white"/>
    <circle cx="250" cy="30" r="1" fill="white"/>
    <circle cx="150" cy="60" r="1" fill="white"/>
    <circle cx="180" cy="80" r="1" fill="white"/>
    <circle cx="220" cy="100" r="1" fill="white"/>
    <circle cx="280" cy="120" r="1" fill="white"/>
  </g>

  <!-- Planets -->
  <g id="planets" transform="translate(0,0)">
    <circle cx="100" cy="100" r="20" fill="url(#rainbow)" filter="url(#glow)"/>
    <circle cx="200" cy="80" r="25" fill="#33ccff" filter="url(#glow)"/>
    <circle cx="150" cy="150" r="30" fill="#ffcc00" filter="url(#glow)"/>
    <circle cx="250" cy="200" r="20" fill="#99ff99" filter="url(#glow)"/>
    <circle cx="50" cy="200" r="25" fill="#cc99ff" filter="url(#glow)"/>
  </g>

  <!-- Octopus -->
  <g id="octopus" transform="translate(150,200)">
    <ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#rainbow)" filter="url(#glow)"/>
    <path d="M0,30 Q-20,50 -40,30 L-40,80 Q-20,110 0,130 L0,180" fill="url(#rainbow)" opacity="0.8"/>
    <path d="M0,30 Q20,50 40,30 L40,80 Q20,110 0,130 L0,180" fill="url(#rainbow)" opacity="0.8"/>
  </g>

  <!-- Motion Lines -->
  <path d="M100,100 Q150,50 200,100" stroke="white" stroke-width="2" opacity="0.5"/>
  <path d="M200,80 Q250,30 280,80" stroke="white" stroke-width="2" opacity="0.5"/>
  <path d="M150,150 Q180,100 210,150" stroke="white" stroke-width="2" opacity="0.5"/>
  <path d="M250,200 Q280,250 300,200" stroke="white" stroke-width="2" opacity="0.5"/>
  <path d="M50,200 Q20,250 0,200" stroke="white" stroke-width="2" opacity="0.5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image clearly depicts a rainbow octopus juggling planets under a starry sky, effectively adhering to the prompt.

    The octopus is well-defined with distinct rainbow colors, and the planets are shown with dotted lines indicating juggling.

    The composition is clear and visually appealing, whereas Player 2's image lacks clarity and a distinct octopus figure, making it less aligned with the 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
22
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
6
Player 2
14
Ellipses

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

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

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
5

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
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
3

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
23
Player 2
20
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
6
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