Back

SVG Drawing Match #1402

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling planets under the ocean"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#1C4A66"/>
      <stop offset="1" stop-color="#0F2E3A"/>
    </linearGradient>
    <linearGradient id="planetGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" stop-color="#FF6F61"/>
      <stop offset="1" stop-color="#FAA61A"/>
    </linearGradient>
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0" stop-color="#8B7355"/>
      <stop offset="1" stop-color="#5C4033"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  <g transform="translate(150,150)">
    <circle cx="0" cy="-50" r="15" fill="url(#planetGradient)"/>
    <circle cx="0" cy="50" r="15" fill="url(#planetGradient)"/>
    <circle cx="-50" cy="0" r="15" fill="url(#planetGradient)"/>
    <circle cx="50" cy="0" r="15" fill="url(#planetGradient)"/>
    <circle cx="0" cy="0" r="15" fill="url(#planetGradient)"/>
  </g>
  <g transform="translate(150,150)">
    <path d="M-60,-30 Q-30,0 0,30 T60,30" stroke="url(#octopusGradient)" stroke-width="10" fill="none"/>
    <path d="M-60,30 Q-30,0 0,-30 T60,-30" stroke="url(#octopusGradient)" stroke-width="10" fill="none"/>
    <path d="M-30,-60 Q0,-30 30,-30 T60,-60" stroke="url(#octopusGradient)" stroke-width="10" fill="none"/>
    <path d="M-30,60 Q0,30 30,30 T60,60" stroke="url(#octopusGradient)" stroke-width="10" fill="none"/>
    <circle cx="0" cy="0" r="30" fill="url(#octopusGradient)"/>
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="oceanGrad" cx="50%" cy="100%" r="70%">
      <stop offset="0%" stop-color="#000b2e"/>
      <stop offset="100%" stop-color="#001848"/>
    </radialGradient>
    <linearGradient id="tentacleGrad" x1="50%" y1="100%" x2="50%" y2="0%">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="100%" stop-color="#ff8e8e"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#oceanGrad)"/>
  
  <!-- Water surface effect -->
  <path d="M0 50 Q75 30 150 40 T300 35" fill="#00285a" opacity="0.3"/>
  <path d="M0 30 Q100 20 200 25 T300 15" fill="#003a7a" opacity="0.2"/>

  <!-- Octopus body -->
  <circle cx="150" cy="180" r="40" fill="#4a4a4a"/>
  
  <!-- Tentacles -->
  <path d="M150 220 Q160 260 130 290" stroke="url(#tentacleGrad)" stroke-width="18" fill="none" stroke-linecap="round"/>
  <path d="M150 220 Q190 240 210 270" stroke="url(#tentacleGrad)" stroke-width="16" fill="none" stroke-linecap="round"/>
  <path d="M150 220 Q120 250 90 260" stroke="url(#tentacleGrad)" stroke-width="14" fill="none" stroke-linecap="round"/>
  
  <!-- Planets -->
  <g filter="url(#glow)">
    <circle cx="110" cy="120" r="25" fill="url(#planet1)">
      <animateTransform attributeName="transform" type="rotate" from="0 150 180" to="360 150 180" dur="20s" repeatCount="indefinite"/>
    </circle>
    <circle cx="190" cy="100" r="18" fill="url(#planet2)">
      <animateTransform attributeName="transform" type="rotate" from="360 150 180" to="0 150 180" dur="15s" repeatCount="indefinite"/>
    </circle>
    <circle cx="170" cy="160" r="22" fill="url(#planet3)">
      <animateTransform attributeName="transform" type="rotate" from="0 150 180" to="360 150 180" dur="25s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Planet details -->
  <defs>
    <radialGradient id="planet1">
      <stop offset="0%" stop-color="#ff9a00"/>
      <stop offset="100%" stop-color="#ff6b6b"/>
    </radialGradient>
    <radialGradient id="planet2">
      <stop offset="0%" stop-color="#4ecdc4"/>
      <stop offset="100%" stop-color="#45b7af"/>
    </radialGradient>
    <radialGradient id="planet3">
      <stop offset="0%" stop-color="#a8edea"/>
      <stop offset="100%" stop-color="#fed6e3"/>
    </radialGradient>
    <pattern id="craterPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="3" cy="3" r="2" fill="#00000044"/>
      <circle cx="7" cy="6" r="1.5" fill="#00000033"/>
    </pattern>
  </defs>

  <!-- Bubbles -->
  <g opacity="0.6">
    <circle cx="50" cy="280" r="4" fill="#a8edea">
      <animate attributeName="cy" from="280" to="20" dur="8s" repeatCount="indefinite"/>
    </circle>
    <circle cx="240" cy="260" r="3" fill="#4ecdc4">
      <animate attributeName="cy" from="260" to="40" dur="6s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Octopus details -->
  <circle cx="140" cy="170" r="6" fill="#fff"/>
  <circle cx="160" cy="170" r="6" fill="#fff"/>
  <circle cx="145" cy="175" r="2" fill="#000"/>
  <circle cx="165" cy="175" r="2" fill="#000"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt with a clear depiction of an octopus juggling planets under the ocean.

    The use of color and playful design elements enhance the visual appeal, making it more engaging.

    Player 1's submission lacks clarity and does not effectively convey the idea of an octopus or 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
11
Player 2
18
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
6
Player 2
12
Ellipses

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

Player 1
Player 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
5
Groups

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

Player 1
2
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
14

Interactivity Metrics

Animations

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

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