Back

SVG Drawing Match #894

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Robot octopus knitting a galaxy with stars on its tentacles"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="galaxy" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#8a2be2" />
      <stop offset="30%" stop-color="#4b0082" />
      <stop offset="70%" stop-color="#191970" />
      <stop offset="100%" stop-color="#000033" />
    </radialGradient>
    <radialGradient id="robotHead" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#e0e0e0" />
      <stop offset="70%" stop-color="#a0a0a0" />
      <stop offset="100%" stop-color="#808080" />
    </radialGradient>
    <filter id="glow" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite operator="over" in="SourceGraphic" />
    </filter>
    <pattern id="starPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="1" fill="white" />
      <circle cx="25" cy="30" r="1.5" fill="white" />
      <circle cx="40" cy="15" r="1" fill="white" />
    </pattern>
  </defs>
  
  <!-- Galaxy being knitted -->
  <ellipse cx="150" cy="100" rx="80" ry="60" fill="url(#galaxy)" />
  <path d="M140,60 Q150,50 160,60 T180,70 T150,90 T120,70 T140,60" fill="#c71585" stroke="none" />
  <path d="M120,100 Q110,120 130,130 T160,130 T170,100 T150,80 T120,100" fill="#9400d3" stroke="none" />
  
  <!-- Knitting Needles -->
  <line x1="200" y1="140" x2="240" y2="80" stroke="#c0c0c0" stroke-width="3" />
  <line x1="100" y1="130" x2="70" y2="60" stroke="#c0c0c0" stroke-width="3" />
  
  <!-- Robot Head -->
  <circle cx="150" cy="170" r="25" fill="url(#robotHead)" stroke="#555555" stroke-width="2" />
  <rect x="140" y="152" width="20" height="5" rx="2" fill="#333333" />
  <circle cx="140" cy="162" r="5" fill="#00bfff" stroke="#333333" stroke-width="1" filter="url(#glow)" />
  <circle cx="160" cy="162" r="5" fill="#00bfff" stroke="#333333" stroke-width="1" filter="url(#glow)" />
  <path d="M145,175 a5,3 0 0,0 10,0" fill="none" stroke="#333333" stroke-width="2" />
  <circle cx="140" cy="162" r="2" fill="#000000" />
  <circle cx="160" cy="162" r="2" fill="#000000" />
  
  <!-- Antenna -->
  <line x1="150" y1="145" x2="150" y2="135" stroke="#555555" stroke-width="2" />
  <circle cx="150" cy="132" r="3" fill="#ff4500" filter="url(#glow)" />
  
  <!-- Tentacles -->
  <path d="M130,185 C120,200 100,210 80,220 C70,225 50,230 40,220 C35,215 38,210 45,208" fill="none" stroke="#4682b4" stroke-width="5" stroke-linecap="round" />
  <path d="M135,190 C130,220 120,250 100,270 C90,280 80,280 75,275 C70,270 72,265 78,260" fill="none" stroke="#5f9ea0" stroke-width="5" stroke-linecap="round" />
  <path d="M150,195 C150,220 160,250 150,270 C145,280 135,285 130,280 C125,275 127,270 132,265" fill="none" stroke="#008b8b" stroke-width="5" stroke-linecap="round" />
  <path d="M165,190 C170,220 190,240 210,250 C220,255 230,255 235,250 C240,245 238,240 232,238" fill="none" stroke="#20b2aa" stroke-width="5" stroke-linecap="round" />
  <path d="M170,185 C190,200 220,205 240,200 C250,198 260,190 255,185 C250,180 245,182 240,185" fill="none" stroke="#48d1cc" stroke-width="5" stroke-linecap="round" />
  <path d="M125,185 C100,190 80,180 60,160 C50,150 48,140 55,135 C60,131 65,135 68,140" fill="none" stroke="#40e0d0" stroke-width="5" stroke-linecap="round" />
  <path d="M175,185 C195,175 210,150 215,125 C218,115 215,105 210,100 C205,95 200,98 195,105" fill="none" stroke="#7fffd4" stroke-width="5" stroke-linecap="round" />
  <path d="M130,190 C115,185 105,170 95,150 C90,140 90,130 95,125 C100,120 105,123 108,128" fill="none" stroke="#66cdaa" stroke-width="5" stroke-linecap="round" />
  
  <!-- Stars on Tentacles -->
  <circle cx="45" cy="208" r="3" fill="yellow" filter="url(#glow)" />
  <circle cx="78" cy="260" r="3" fill="yellow" filter="url(#glow)" />
  <circle cx="132" cy="265" r="3" fill="yellow" filter="url(#glow)" />
  <circle cx="232" cy="238" r="3" fill="yellow" filter="url(#glow)" />
  <circle cx="240" cy="185" r="3" fill="yellow" filter="url(#glow)" />
  <circle cx="68" cy="140" r="3" fill="yellow" filter="url(#glow)" />
  <circle cx="195" cy="105" r="3" fill="yellow" filter="url(#glow)" />
  <circle cx="108" cy="128" r="3" fill="yellow" filter="url(#glow)" />
  
  <!-- Additional Stars -->
  <circle cx="60" cy="60" r="1" fill="white" />
  <circle cx="90" cy="40" r="1" fill="white" />
  <circle cx="190" cy="30" r="1" fill="white" />
  <circle cx="220" cy="50" r="1" fill="white" />
  <circle cx="250" cy="90" r="1" fill="white" />
  <circle cx="240" cy="150" r="1" fill="white" />
  <circle cx="30" cy="100" r="1" fill="white" />
  
  <!-- Yarn Ball -->
  <circle cx="210" cy="200" r="15" fill="#9370db" stroke="#8a2be2" stroke-width="1" />
  <path d="M200,192 Q208,185 215,190 T225,200" fill="none" stroke="#8a2be2" stroke-width="1" />
  <path d="M205,205 Q215,210 220,200" fill="none" stroke="#8a2be2" stroke-width="1" />
  
  <!-- Yarn connecting to galaxy -->
  <path d="M210,185 C200,170 180,150 170,130 C165,120 162,110 150,100" fill="none" stroke="#9370db" stroke-width="2" stroke-dasharray="3,2" />
  
  <!-- Galaxy Stars -->
  <circle cx="130" cy="80" r="2" fill="white" filter="url(#glow)" />
  <circle cx="150" cy="110" r="1.5" fill="white" filter="url(#glow)" />
  <circle cx="170" cy="90" r="2" fill="white" filter="url(#glow)" />
  <circle cx="185" cy="100" r="1" fill="white" filter="url(#glow)" />
  <circle cx="115" cy="100" r="1" fill="white" filter="url(#glow)" />
  <circle cx="160" cy="75" r="1" fill="white" filter="url(#glow)" />
  <circle cx="140" cy="95" r="1" fill="white" filter="url(#glow)" />
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #1e3c72; stop-opacity: 0.9" />
      <stop offset="100%" style="stop-color: #2a5298; stop-opacity: 0" />
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="white" />
      <circle cx="9" cy="9" r="1" fill="white" />
    </pattern>
    <radialGradient id="tentacleGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #ff6f61; stop-opacity: 1" />
      <stop offset="100%" style="stop-color: #ff9472; stop-opacity: 0.6" />
    </radialGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#galaxyGradient)" />
  <g id="robot-octopus" transform="translate(150,150)">
    <circle cx="0" cy="0" r="30" fill="#666" stroke="#444" stroke-width="3" />
    <g id="tentacles">
      <path d="M0,30 C10,60 30,80 60,90" fill="none" stroke="url(#tentacleGradient)" stroke-width="8" />
      <path d="M0,30 C-10,60 -30,80 -60,90" fill="none" stroke="url(#tentacleGradient)" stroke-width="8" />
      <path d="M0,30 C20,50 50,70 80,70" fill="none" stroke="url(#tentacleGradient)" stroke-width="8" />
      <path d="M0,30 C-20,50 -50,70 -80,70" fill="none" stroke="url(#tentacleGradient)" stroke-width="8" />
      <path d="M0,30 C40,40 70,50 100,40" fill="none" stroke="url(#tentacleGradient)" stroke-width="8" />
      <path d="M0,30 C-40,40 -70,50 -100,40" fill="none" stroke="url(#tentacleGradient)" stroke-width="8" />
      <rect x="-5" y="90" width="10" height="10" fill="url(#starPattern)" />
      <rect x="-40" y="70" width="10" height="10" fill="url(#starPattern)" />
      <rect x="30" y="90" width="10" height="10" fill="url(#starPattern)" />
      <rect x="70" y="60" width="10" height="10" fill="url(#starPattern)" />
      <rect x="-30" y="50" width="10" height="10" fill="url(#starPattern)" />
      <rect x="45" y="30" width="10" height="10" fill="url(#starPattern)" />
    </g>
    <g id="knitting-needles">
      <line x1="20" y1="0" x2="-30" y2="60" stroke="#b5651d" stroke-width="3" />
      <line x1="-20" y1="0" x2="30" y2="60" stroke="#b5651d" stroke-width="3" />
    </g>
  </g>
  <path d="M90,210 Q150,80 210,210" fill="none" stroke="#fff" stroke-width="2" stroke-dasharray="10,5" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's submission effectively captures the theme with a creative depiction of a robot octopus actively knitting, incorporating stars on its tentacles and a vibrant galaxy background.

    The design is visually appealing and colorful, with clear adherence to the prompt.

    In contrast, Player 2's image lacks detail and creativity in representing the octopus and galaxy, making it less engaging and relevant to 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
51
Player 2
19
Rectangles

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

Player 1
1
Player 2
7
Circles

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

Player 1
32
Player 2
3
Ellipses

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

Player 1
1
Player 2
Lines

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

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

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
27
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
1

Complexity Metrics

Path Commands

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

Player 1
54
Player 2
14
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
4
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