Back

SVG Drawing Match #318

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling planets under a starry night sky"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0b3d91"/>
      <stop offset="100%" stop-color="#000814"/>
    </linearGradient>
    <radialGradient id="bodyGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff7f50"/>
      <stop offset="100%" stop-color="#ff4500"/>
    </radialGradient>
    <radialGradient id="planetGradient1" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffd700"/>
      <stop offset="100%" stop-color="#ffa500"/>
    </radialGradient>
    <radialGradient id="planetGradient2" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#7fffd4"/>
      <stop offset="100%" stop-color="#40e0d0"/>
    </radialGradient>
    <radialGradient id="planetGradient3" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#dda0dd"/>
      <stop offset="100%" stop-color="#ba55d3"/>
    </radialGradient>
    <radialGradient id="planetGradient4" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#87cefa"/>
      <stop offset="100%" stop-color="#4682b4"/>
    </radialGradient>
    <pattern id="spots" patternUnits="userSpaceOnUse" width="4" height="4">
      <circle cx="2" cy="2" r="0.5" fill="white" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />

  <!-- Stars -->
  <g fill="white" opacity="0.8">
    <circle cx="30" cy="50" r="1.5"/>
    <circle cx="80" cy="20" r="1"/>
    <circle cx="150" cy="70" r="1.2"/>
    <circle cx="200" cy="40" r="1"/>
    <circle cx="250" cy="90" r="1.3"/>
    <circle cx="60" cy="200" r="1"/>
    <circle cx="120" cy="160" r="1.1"/>
    <circle cx="180" cy="220" r="1"/>
    <circle cx="220" cy="180" r="1.4"/>
    <circle cx="270" cy="130" r="1"/>
    <!-- More stars for density -->
    <circle cx="40" cy="250" r="0.8"/>
    <circle cx="90" cy="270" r="1"/>
    <circle cx="130" cy="230" r="0.9"/>
    <circle cx="170" cy="260" r="1.2"/>
    <circle cx="210" cy="240" r="0.7"/>
    <circle cx="260" cy="210" r="1"/>
  </g>

  <!-- Octopus Body -->
  <g transform="translate(150, 200)">
    <ellipse cx="0" cy="0" rx="30" ry="40" fill="url(#bodyGradient)" stroke="#ff6347" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-10" cy="-10" r="5" fill="white"/>
    <circle cx="-10" cy="-10" r="2" fill="black"/>
    <circle cx="10" cy="-10" r="5" fill="white"/>
    <circle cx="10" cy="-10" r="2" fill="black"/>
    <!-- Tentacles -->
    <path d="M-20,20 Q-40,60 -20,80" fill="none" stroke="#ff7f50" stroke-width="4"/>
    <path d="M-10,25 Q-35,65 -15,85" fill="none" stroke="#ff7f50" stroke-width="4"/>
    <path d="M0,30 Q-30,70 0,90" fill="none" stroke="#ff7f50" stroke-width="4"/>
    <path d="M10,25 Q35,65 15,85" fill="none" stroke="#ff7f50" stroke-width="4"/>
    <path d="M20,20 Q40,60 20,80" fill="none" stroke="#ff7f50" stroke-width="4"/>
  </g>

  <!-- Planets -->
  <g>
    <!-- Planet 1 -->
    <g>
      <circle cx="70" cy="100" r="10" fill="url(#planetGradient1)" stroke="#ffd700" stroke-width="1"/>
      <ellipse cx="70" cy="100" rx="12" ry="5" fill="none" stroke="#daa520" stroke-width="1"/>
    </g>
    <!-- Planet 2 -->
    <g>
      <circle cx="200" cy="80" r="8" fill="url(#planetGradient2)" stroke="#40e0d0" stroke-width="1"/>
      <path d="M200,72 a8,8 0 1,0 0.1,0" fill="none" stroke="#20b2aa" stroke-width="1"/>
    </g>
    <!-- Planet 3 -->
    <g>
      <circle cx="120" cy="150" r="12" fill="url(#planetGradient3)" stroke="#ba55d3" stroke-width="1"/>
      <path d="M120,138 a12,12 0 1,1 0.1,0" fill="none" stroke="#9932cc" stroke-width="1"/>
    </g>
    <!-- Planet 4 -->
    <g>
      <circle cx="250" cy="200" r="9" fill="url(#planetGradient4)" stroke="#4682b4" stroke-width="1"/>
      <ellipse cx="250" cy="200" rx="10" ry="4" fill="none" stroke="#5dade2" stroke-width="1"/>
    </g>
  </g>

  <!-- Juggling Lines -->
  <g stroke="white" stroke-width="1" opacity="0.6">
    <path d="M150,200 Q70,100 80,90" fill="none"/>
    <path d="M150,200 Q200,80 210,70" fill="none"/>
    <path d="M150,200 Q120,150 130,140" fill="none"/>
    <path d="M150,200 Q250,200 260,190" fill="none"/>
  </g>

  <!-- Decorative Patterns on Octopus -->
  <g transform="translate(150, 200)">
    <circle cx="-10" cy="10" r="3" fill="url(#spots)" />
    <circle cx="10" cy="15" r="2" fill="url(#spots)" />
    <circle cx="0" cy="20" r="3" fill="url(#spots)" />
    <circle cx="-15" cy="5" r="2" fill="url(#spots)" />
    <circle cx="15" cy="5" r="2" fill="url(#spots)" />
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <defs>
    <radialGradient id="starryNight" cx="50%" cy="50%" r="100%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1F4567" stop-opacity="1" />
      <stop offset="100%" stop-color="#030508" stop-opacity="1" />
    </radialGradient>
    <linearGradient id="glow" x1="50%" y1="0%" x2="50%" y2="100%">
      <stop offset="0%" stop-color="#8B9467" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#C5D9E8" stop-opacity="0" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#starryNight)" />

  <!-- Stars -->
  <g>
    <circle cx="10" cy="20" r="2" fill="#E3F2FD" />
    <circle cx="40" cy="100" r="3" fill="#E3F2FD" />
    <circle cx="80" cy="50" r="2" fill="#E3F2FD" />
    <circle cx="200" cy="150" r="3" fill="#E3F2FD" />
    <circle cx="250" cy="200" r="2" fill="#E3F2FD" />
    <circle cx="220" cy="80" r="3" fill="#E3F2FD" />
    <circle cx="100" cy="220" r="2" fill="#E3F2FD" />
    <circle cx="50" cy="250" r="3" fill="#E3F2FD" />
  </g>

  <!-- Planets -->
  <g>
    <!-- Earth -->
    <circle cx="100" cy="80" r="20" fill="#56B3FA" stroke="#2E4053" stroke-width="2" />
    <circle cx="100" cy="80" r="15" fill="#8BC34A" stroke="#2E4053" stroke-width="2" />
    <!-- Mars -->
    <circle cx="150" cy="180" r="15" fill="#FFC107" stroke="#935C42" stroke-width="2" />
    <circle cx="150" cy="180" r="10" fill="#FF9800" stroke="#935C42" stroke-width="2" />
    <!-- Jupiter -->
    <circle cx="200" cy="50" r="30" fill="#71A0E5" stroke="#3569B2" stroke-width="2" />
    <circle cx="200" cy="50" r="20" fill="#C5CAE9" stroke="#3569B2" stroke-width="2" />
    <!-- Saturn -->
    <circle cx="250" cy="220" r="25" fill="#F7DC6F" stroke="#8B9467" stroke-width="2" />
    <circle cx="250" cy="220" r="15" fill="#F0E4CC" stroke="#8B9467" stroke-width="2" />
  </g>

  <!-- Octopus -->
  <g>
    <path d="M120 200 Q 150 250 180 200 L 220 160 Q 200 200 220 240 L 200 270 Q 180 240 160 270 L 140 240 Q 120 200 140 160 Z" fill="#E91E63" stroke="#3B3F54" stroke-width="2" />
    <path d="M140 150 Q 160 120 180 150 L 200 180 Q 220 150 200 120 L 180 90 Q 160 60 140 90 L 120 120 Q 100 150 120 180 Z" fill="#E91E63" stroke="#3B3F54" stroke-width="2" />
    <circle cx="160" cy="210" r="10" fill="#FF9800" stroke="#3B3F54" stroke-width="2" />
    <circle cx="190" cy="210" r="10" fill="#FF9800" stroke="#3B3F54" stroke-width="2" />
    <circle cx="130" cy="210" r="10" fill="#FF9800" stroke="#3B3F54" stroke-width="2" />
  </g>

  <!-- Arms -->
  <g stroke="#3B3F54" stroke-width="2">
    <line x1="160" y1="170" x2="100" y2="180" />
    <line x1="190" y1="170" x2="150" y2="200" />
    <line x1="130" y1="170" x2="180" y2="140" />
    <line x1="160" y1="240" x2="220" y2="200" />
    <line x1="190" y1="240" x2="200" y2="220" />
    <line x1="130" y1="240" x2="140" y2="260" />
  </g>

  <!-- Glowing Effect -->
  <g>
    <rect x="120" y="160" width="40" height="80" fill="url(#glow)" rx="10" />
    <rect x="140" y="110" width="20" height="50" fill="url(#glow)" rx="5" />
    <rect x="180" y="210" width="20" height="30" fill="url(#glow)" rx="5" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image clearly depicts an octopus juggling planets, closely adhering to the prompt.

    The use of color is vibrant and the composition effectively conveys the whimsical theme under a starry night sky.

    Player 2's image is more abstract and less clearly represents the concept of an octopus juggling planets, making Player 1's submission stronger in terms of adherence and visual clarity.

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
45
Player 2
31
Rectangles

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

Player 1
1
Player 2
4
Circles

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

Player 1
30
Player 2
19
Ellipses

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

Player 1
3
Player 2
Lines

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

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

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

Player 1
9
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
15
Player 2
14

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
19
Player 2
18

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
22
Player 2
18
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
7
Player 2
2
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