Back

SVG Drawing Match #422

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus wearing a space helmet, juggling planets"

SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions for gradients and patterns -->
  <defs>
    <!-- Space background gradient -->
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0a0a2a" />
      <stop offset="50%" stop-color="#1a1a4a" />
      <stop offset="100%" stop-color="#0a0a2a" />
    </linearGradient>
    
    <!-- Nebula gradient -->
    <radialGradient id="nebulaGradient" cx="50%" cy="50%" r="60%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#ff55aa" stop-opacity="0.2" />
      <stop offset="100%" stop-color="#ff55aa" stop-opacity="0" />
    </radialGradient>
    
    <radialGradient id="nebula2Gradient" cx="50%" cy="50%" r="60%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#5580ff" stop-opacity="0.2" />
      <stop offset="100%" stop-color="#5580ff" stop-opacity="0" />
    </radialGradient>
    
    <!-- Octopus body gradient -->
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff6b6b" />
      <stop offset="70%" stop-color="#cc5454" />
      <stop offset="100%" stop-color="#aa3e3e" />
    </radialGradient>
    
    <!-- Helmet glass gradient -->
    <radialGradient id="helmetGlassGradient" cx="40%" cy="40%" r="60%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#afdeff" stop-opacity="0.7" />
      <stop offset="70%" stop-color="#83c4ff" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#5a9de8" stop-opacity="0.9" />
    </radialGradient>
    
    <!-- Helmet metal gradient -->
    <linearGradient id="helmetMetalGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#e0e0e0" />
      <stop offset="50%" stop-color="#b0b0b0" />
      <stop offset="100%" stop-color="#909090" />
    </linearGradient>
    
    <!-- Planet gradients -->
    <radialGradient id="planet1Gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff9d00" />
      <stop offset="100%" stop-color="#ff6200" />
    </radialGradient>
    
    <radialGradient id="planet2Gradient" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#00bfff" />
      <stop offset="100%" stop-color="#0080ff" />
    </radialGradient>
    
    <radialGradient id="planet3Gradient" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#8a00ff" />
      <stop offset="100%" stop-color="#6200b3" />
    </radialGradient>
    
    <radialGradient id="planet4Gradient" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#ff5252" />
      <stop offset="100%" stop-color="#c50000" />
    </radialGradient>
    
    <radialGradient id="planet5Gradient" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#7fff00" />
      <stop offset="100%" stop-color="#4c9900" />
    </radialGradient>
    
    <!-- Button light gradient -->
    <radialGradient id="buttonGradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ffff00" />
      <stop offset="100%" stop-color="#ffcc00" />
    </radialGradient>
    
    <!-- Filter for glow effects -->
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <!-- Filter for smaller glow -->
    <filter id="smallGlow" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="1" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <!-- Star pattern -->
    <pattern id="starPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" />
      <circle cx="25" cy="15" r="0.6" fill="white" />
      <circle cx="40" cy="5" r="1" fill="white" />
      <circle cx="5" cy="30" r="0.7" fill="white" />
      <circle cx="20" cy="35" r="1.2" fill="white" />
      <circle cx="35" cy="25" r="0.9" fill="white" />
      <circle cx="15" cy="45" r="0.8" fill="white" />
      <circle cx="30" cy="40" r="0.6" fill="white" />
      <circle cx="45" cy="35" r="1.1" fill="white" />
    </pattern>
  </defs>
  
  <!-- Space background -->
  <rect width="300" height="300" fill="url(#spaceGradient)" />
  
  <!-- Nebulae -->
  <ellipse cx="220" cy="200" rx="100" ry="80" fill="url(#nebulaGradient)" />
  <ellipse cx="80" cy="250" rx="70" ry="50" fill="url(#nebula2Gradient)" />
  
  <!-- Stars -->
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.8" />
  
  <!-- Distant galaxy -->
  <g transform="translate(30, 40) rotate(30)">
    <ellipse cx="0" cy="0" rx="15" ry="5" fill="white" opacity="0.3" />
    <ellipse cx="0" cy="0" rx="10" ry="3" fill="white" opacity="0.4" />
  </g>
  
  <!-- Comets -->
  <g transform="translate(260, 50) rotate(-30)">
    <circle cx="0" cy="0" r="2" fill="white" filter="url(#smallGlow)" />
    <path d="M0,0 L-30,10" stroke="white" stroke-width="1.5" opacity="0.7" />
  </g>
  
  <g transform="translate(40, 200) rotate(20)">
    <circle cx="0" cy="0" r="1.5" fill="white" filter="url(#smallGlow)" />
    <path d="M0,0 L-20,5" stroke="white" stroke-width="1" opacity="0.5" />
  </g>
  
  <!-- Orbital trajectories (indicating juggling paths) -->
  <ellipse cx="150" cy="150" rx="110" ry="35" stroke="white" stroke-width="0.5" fill="none" opacity="0.3" transform="rotate(-10, 150, 150)" />
  <ellipse cx="150" cy="150" rx="100" ry="30" stroke="white" stroke-width="0.5" fill="none" opacity="0.2" transform="rotate(10, 150, 150)" />
  
  <!-- Planets being juggled -->
  <g id="juggling-planets">
    <!-- Planet 1 (Saturn-like) -->
    <g transform="translate(80, 70)">
      <circle cx="0" cy="0" r="15" fill="url(#planet1Gradient)" filter="url(#glow)" />
      <ellipse cx="0" cy="0" rx="22" ry="3" fill="#ff9d00" opacity="0.5" transform="rotate(-20)" />
      <ellipse cx="0" cy="0" rx="18" ry="1" fill="#ffb84d" opacity="0.3" transform="rotate(-20)" />
      <!-- Surface details -->
      <path d="M-7,-7 Q0,-12 7,-7" stroke="#ff7b00" stroke-width="1.5" fill="none" opacity="0.7" />
      <path d="M-10,0 Q-5,5 0,0 Q5,-5 10,0" stroke="#ff7b00" stroke-width="1.5" fill="none" opacity="0.7" />
      <!-- Small moon -->
      <circle cx="-20" cy="-10" r="3" fill="#d3d3d3" opacity="0.8" />
    </g>
    
    <!-- Planet 2 (Earth-like) -->
    <g transform="translate(220, 70)">
      <circle cx="0" cy="0" r="12" fill="url(#planet2Gradient)" filter="url(#glow)" />
      <!-- Continents -->
      <path d="M-5,-5 Q-2,-9 2,-6 Q5,-2 1,2 Q-3,5 -5,-5" fill="#2eba7a" opacity="0.7" />
      <path d="M4,-3 C7,-2 8,2 5,5 C3,6 0,5 -2,3 C-3,0 0,-2 4,-3" fill="#2eba7a" opacity="0.7" />
      <!-- Cloud layer -->
      <path d="M-8,-3 Q-4,-5 0,-3 Q4,-1 8,-3" stroke="white" stroke-width="0.8" fill="none" opacity="0.6" />
      <path d="M-7,5 Q-3,7 1,5 Q5,3 7,5" stroke="white" stroke-width="0.8" fill="none" opacity="0.6" />
      <!-- Small moon -->
      <circle cx="15" cy="5" r="2" fill="#d3d3d3" opacity="0.8" />
    </g>
    
    <!-- Planet 3 (Ringed purple) -->
    <g transform="translate(180, 110)">
      <circle cx="0" cy="0" r="10" fill="url(#planet3Gradient)" filter="url(#glow)" />
      <ellipse cx="0" cy="0" rx="15" ry="2" fill="#8a00ff" opacity="0.5" transform="rotate(15)" />
      <ellipse cx="0" cy="0" rx="13" ry="0.8" fill="#b366ff" opacity="0.3" transform="rotate(15)" />
      <!-- Craters -->
      <circle cx="-3" cy="-2" r="2" fill="#7000cc" opacity="0.7" />
      <circle cx="4" cy="3" r="1.5" fill="#7000cc" opacity="0.7" />
      <circle cx="1" cy="-4" r="1" fill="#7000cc" opacity="0.7" />
    </g>
    
    <!-- Planet 4 (Mars-like) -->
    <g transform="translate(120, 110)">
      <circle cx="0" cy="0" r="8" fill="url(#planet4Gradient)" filter="url(#glow)" />
      <!-- Surface details -->
      <circle cx="-3" cy="-1" r="1.5" fill="#b30000" opacity="0.7" />
      <circle cx="2" cy="2" r="2" fill="#b30000" opacity="0.7" />
      <path d="M-4,4 C-2,6 2,6 4,4" stroke="#b30000" stroke-width="1" fill="none" opacity="0.7" />
      <!-- Polar ice cap -->
      <path d="M0,-8 Q3,-7 4,-5 Q1,-6 -2,-6 Q-4,-7 -3,-8 Z" fill="white" opacity="0.6" />
    </g>
    
    <!-- Planet 5 (Green gas giant) -->
    <g transform="translate(150, 60)">
      <circle cx="0" cy="0" r="9" fill="url(#planet5Gradient)" filter="url(#glow)" />
      <!-- Cloud bands -->
      <path d="M-7,-2 Q-3,-4 0,-2 Q3,0 7,-1" stroke="#66cc00" stroke-width="1" fill="none" opacity="0.7" />
      <path d="M-7,1 Q-3,3 0,1 Q3,-1 7,0" stroke="#66cc00" stroke-width="1" fill="none" opacity="0.7" />
      <path d="M-6,4 Q-2,5 2,4 Q5,3 6,4" stroke="#66cc00" stroke-width="1" fill="none" opacity="0.7" />
      <!-- Storm spot -->
      <ellipse cx="3" cy="-2" rx="2" ry="1.5" fill="#b3ff66" opacity="0.6" transform="rotate(30)" />
    </g>
  </g>
  
  <!-- Motion lines for juggling -->
  <path d="M80,70 C90,60 100,55 110,60" stroke="white" stroke-width="1" fill="none" stroke-dasharray="3,3" />
  <path d="M220,70 C210,60 200,55 190,60" stroke="white" stroke-width="1" fill="none" stroke-dasharray="3,3" />
  <path d="M150,60 C140,50 130,45 120,50" stroke="white" stroke-width="1" fill="none" stroke-dasharray="3,3" />
  <path d="M120,110 C110,120 100,125 90,120" stroke="white" stroke-width="1" fill="none" stroke-dasharray="3,3" />
  <path d="M180,110 C190,120 200,125 210,120" stroke="white" stroke-width="1" fill="none" stroke-dasharray="3,3" />
  
  <!-- Octopus with helmet -->
  <g id="octopus">
    <!-- Tentacles (behind) -->
    <path d="M120,150 C100,170 80,200 70,230 C68,240 72,250 80,248 C85,247 88,242 87,235" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    <path d="M130,150 C120,175 115,210 120,240 C122,250 130,255 135,245 C138,240 138,235 135,230" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    <path d="M170,150 C180,175 185,210 180,240 C178,250 170,255 165,245 C162,240 162,235 165,230" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    <path d="M180,150 C200,170 220,200 230,230 C232,240 228,250 220,248 C215,247 212,242 213,235" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    
    <!-- Body -->
    <ellipse cx="150" cy="150" rx="40" ry="45" fill="url(#octopusGradient)" />
    
    <!-- Suction cups on tentacles -->
    <g fill="#ff8080">
      <circle cx="75" cy="230" r="3" />
      <circle cx="125" cy="238" r="3" />
      <circle cx="175" cy="238" r="3" />
      <circle cx="225" cy="230" r="3" />
      <circle cx="70" cy="175" r="3" />
      <circle cx="230" cy="175" r="3" />
      <circle cx="85" cy="185" r="3" />
      <circle cx="215" cy="185" r="3" />
    </g>
    
    <!-- Tentacles (front) -->
    <path d="M140,150 C130,160 90,140 70,160 C60,165 58,175 65,180 C70,183 75,182 78,175" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    <path d="M145,155 C140,165 110,165 90,180 C82,188 85,195 90,195 C95,195 98,192 98,185" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    <path d="M155,155 C160,165 190,165 210,180 C218,188 215,195 210,195 C205,195 202,192 202,185" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    <path d="M160,150 C170,160 210,140 230,160 C240,165 242,175 235,180 C230,183 225,182 222,175" stroke="#aa3e3e" stroke-width="8" fill="none" stroke-linecap="round" />
    
    <!-- Suction cups on front tentacles -->
    <g fill="#ff8080">
      <circle cx="70" cy="165" r="3" />
      <circle cx="90" cy="185" r="3" />
      <circle cx="210" cy="185" r="3" />
      <circle cx="230" cy="165" r="3" />
    </g>
    
    <!-- Body pattern -->
    <path d="M130,130 C135,140 145,145 155,140 C165,135 170,125 165,115" stroke="#ff8080" stroke-width="2" fill="none" opacity="0.6" />
    <path d="M140,170 C150,175 160,175 170,170" stroke="#ff8080" stroke-width="2" fill="none" opacity="0.6" />
    
    <!-- Helmet base -->
    <ellipse cx="150" cy="125" rx="35" ry="38" fill="url(#helmetMetalGradient)" />
    
    <!-- Helmet details -->
    <path d="M120,110 L120,140" stroke="#909090" stroke-width="2" fill="none" />
    <path d="M180,110 L180,140" stroke="#909090" stroke-width="2" fill="none" />
    <ellipse cx="150" cy="140" rx="30" ry="5" fill="#909090" />
    
    <!-- Helmet antenna -->
    <line x1="150" y1="87" x2="150" y2="75" stroke="#909090" stroke-width="2" />
    <circle cx="150" cy="73" r="3" fill="red" filter="url(#smallGlow)" />
    
    <!-- Helmet tech elements -->
    <rect x="125" y="105" width="10" height="5" rx="1" fill="#707070" />
    <rect x="165" y="105" width="10" height="5" rx="1" fill="#707070" />
    <circle cx="130" cy="130" r="3" fill="url(#buttonGradient)" filter="url(#smallGlow)" />
    <circle cx="170" cy="130" r="3" fill="url(#buttonGradient)" filter="url(#smallGlow)" />
    
    <!-- Helmet glass -->
    <ellipse cx="150" cy="115" rx="25" ry="28" fill="url(#helmetGlassGradient)" />
    
    <!-- Oxygen bubbles in helmet -->
    <circle cx="135" cy="95" r="3" fill="white" opacity="0.6" />
    <circle cx="145" cy="90" r="2" fill="white" opacity="0.5" />
    <circle cx="160" cy="95" r="2.5" fill="white" opacity="0.5" />
    
    <!-- Helmet rim lighting -->
    <path d="M120,125 C130,140 170,140 180,125" stroke="white" stroke-width="2" opacity="0.5" fill="none" />
    
    <!-- Face -->
    <circle cx="140" cy="115" r="5" fill="#000" />
    <circle cx="142" cy="113" r="1.5" fill="white" />
    <circle cx="160" cy="115" r="5" fill="#000" />
    <circle cx="162" cy="113" r="1.5" fill="white" />
    <path d="M145,130 Q150,135 155,130" stroke="#000" stroke-width="2" fill="none" />
  </g>
  
  <!-- Small UFO in background -->
  <g transform="translate(260, 180) rotate(-15)">
    <ellipse cx="0" cy="0" rx="8" ry="2" fill="#a0a0a0" />
    <ellipse cx="0" cy="-2" rx="5" ry="2" fill="#c0c0ff" opacity="0.8" />
    <circle cx="0" cy="-2" r="1" fill="yellow" filter="url(#smallGlow)" />
  </g>
  
  <!-- Space station in distance -->
  <g transform="translate(50, 30)">
    <rect x="-10" y="-2" width="20" height="4" fill="#c0c0c0" />
    <circle cx="-10" cy="0" r="3" fill="#a0a0a0" />
    <circle cx="10" cy="0" r="3" fill="#a0a0a0" />
    <line x1="-5" y1="-8" x2="-5" y2="8" stroke="#c0c0c0" stroke-width="1" />
    <line x1="5" y1="-8" x2="5" y2="8" stroke="#c0c0c0" stroke-width="1" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bg" fx="50%" fy="50%" r="150%">
      <stop offset="0" style="stop-color:#1a0f3c;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#4a1010;stop-opacity:1"/>
    </radialGradient>
    <linearGradient id="helmet" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0" style="stop-color:#ffd700;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#ff8f00;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="tentacle" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0" style="stop-color:#4a1010;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#6a1a1a;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="planet1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0" style="stop-color:#00bfff;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#0066ff;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="planet2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0" style="stop-color:#ff6b6b;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#ff1a1a;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="planet3" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0" style="stop-color:#ffd700;stop-opacity:1"/>
      <stop offset="1" style="stop-color:#ff8f00;stop-opacity:1"/>
    </linearGradient>
    <mask id="visor">
      <rect width="100" height="50" fill="white"/>
    </mask>
  </defs>
  
  <rect width="300" height="300" fill="url(#bg)"/>
  
  <g transform="translate(150,150)">
    <!-- Octopus Body -->
    <path d="M 0,0 L 20,50 Q 40,80 60,50 L 60,0 Z" fill="url(#tentacle)" opacity="0.8"/>
    <path d="M 60,0 Q 80,20 60,40 L 60,80 Q 40,60 20,80 L 20,50 Z" fill="url(#tentacle)" opacity="0.8"/>
    <path d="M 0,0 Q 20,-20 40,0 L 40,-40 Q 20,-60 0,-40 Z" fill="url(#tentacle)" opacity="0.8"/>
    
    <!-- Tentacles -->
    <g transform="rotate(72)">
      <path d="M 0,0 Q 20,-40 40,-20 L 40,20 Q 20,40 0,60" fill="url(#tentacle)" opacity="0.8"/>
    </g>
    <g transform="rotate(144)">
      <path d="M 0,0 Q 20,-40 40,-20 L 40,20 Q 20,40 0,60" fill="url(#tentacle)" opacity="0.8"/>
    </g>
    <g transform="rotate(216)">
      <path d="M 0,0 Q 20,-40 40,-20 L 40,20 Q 20,40 0,60" fill="url(#tentacle)" opacity="0.8"/>
    </g>
    <g transform="rotate(288)">
      <path d="M 0,0 Q 20,-40 40,-20 L 40,20 Q 20,40 0,60" fill="url(#tentacle)" opacity="0.8"/>
    </g>
    
    <!-- Space Helmet -->
    <path d="M -50,-30 L -30,-60 L 30,-60 L 50,-30 L 50,30 L 30,60 L -30,60 L -50,30 Z" fill="url(#helmet)"/>
    <rect x="-35" y="-35" width="70" height="70" fill="none" stroke="white" stroke-width="2"/>
    <circle cx="0" cy="-25" r="25" fill="url(#helmet)"/>
    <circle cx="0" cy="-25" r="20" fill="none" stroke="white" stroke-width="2"/>
    
    <!-- Planets -->
    <g transform="translate(100,0)">
      <circle cx="0" cy="0" r="30" fill="url(#planet1)"/>
      <circle cx="0" cy="0" r="25" fill="url(#planet2)"/>
      <circle cx="0" cy="0" r="20" fill="url(#planet3)"/>
    </g>
    
    <g transform="translate(-80,40)">
      <circle cx="0" cy="0" r="25" fill="url(#planet2)"/>
      <circle cx="0" cy="0" r="20" fill="url(#planet1)"/>
    </g>
    
    <g transform="translate(80,-40)">
      <circle cx="0" cy="0" r="30" fill="url(#planet3)"/>
      <circle cx="0" cy="0" r="25" fill="url(#planet1)"/>
    </g>
    
    <!-- Stars -->
    <circle cx="-100" cy="-100" r="2" fill="white"/>
    <circle cx="-50" cy="-150" r="2" fill="white"/>
    <circle cx="50" cy="-150" r="2" fill="white"/>
    <circle cx="100" cy="-100" r="2" fill="white"/>
    <circle cx="150" cy="-50" r="2" fill="white"/>
    <circle cx="200" cy="0" r="2" fill="white"/>
    <circle cx="250" cy="50" r="2" fill="white"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 1

Judge's Analysis

    Player 1's image clearly represents the idea of an octopus wearing a space helmet, juggling planets.

    The technical quality is strong with well-defined shapes and vibrant colors that enhance the visual appeal.

    Player 2's submission, while abstract and colorful, lacks clarity in depicting an octopus or the act of juggling 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
105
Player 2
27
Rectangles

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

Player 1
5
Player 2
3
Circles

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

Player 1
48
Player 2
16
Ellipses

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

Player 1
17
Player 2
Lines

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

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

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

Player 1
14
Player 2
8

Visual Effects Metrics

Gradients

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
34
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
42
Player 2
1

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
17
Player 2
8

Complexity Metrics

Path Commands

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

Player 1
94
Player 2
41
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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