Back

SVG Drawing Match #2442

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets under a starry sky."

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 reusable elements -->
  <defs>
    <!-- Space background gradient -->
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0a001a" />
      <stop offset="50%" stop-color="#150050" />
      <stop offset="100%" stop-color="#3a015c" />
    </linearGradient>
    
    <!-- Galaxy swirl pattern -->
    <radialGradient id="galaxyGradient" cx="70%" cy="20%" r="80%" fx="70%" fy="20%">
      <stop offset="0%" stop-color="#9966ff" stop-opacity="0.1" />
      <stop offset="50%" stop-color="#6600cc" stop-opacity="0.05" />
      <stop offset="100%" stop-color="#330066" stop-opacity="0" />
    </radialGradient>
    
    <!-- Octopus gradient -->
    <linearGradient id="octopusGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff4d94" />
      <stop offset="100%" stop-color="#c800ff" />
    </linearGradient>
    
    <linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff66cc" />
      <stop offset="100%" stop-color="#cc00ff" />
    </linearGradient>
    
    <!-- Planet patterns and gradients -->
    <radialGradient id="planet1Gradient" cx="40%" cy="40%" r="60%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ffcc00" />
      <stop offset="80%" stop-color="#ff6600" />
      <stop offset="100%" stop-color="#ff3300" />
    </radialGradient>
    
    <radialGradient id="planet2Gradient" cx="50%" cy="50%" r="70%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#99ffff" />
      <stop offset="70%" stop-color="#3399ff" />
      <stop offset="100%" stop-color="#0066cc" />
    </radialGradient>
    
    <radialGradient id="planet3Gradient" cx="50%" cy="50%" r="60%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff99cc" />
      <stop offset="70%" stop-color="#cc0066" />
      <stop offset="100%" stop-color="#990033" />
    </radialGradient>
    
    <radialGradient id="planet4Gradient" cx="40%" cy="40%" r="60%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ccff99" />
      <stop offset="70%" stop-color="#66cc00" />
      <stop offset="100%" stop-color="#339900" />
    </radialGradient>
    
    <radialGradient id="planet5Gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffff99" />
      <stop offset="70%" stop-color="#cccc00" />
      <stop offset="100%" stop-color="#999900" />
    </radialGradient>
    
    <!-- Saturn-like ring pattern -->
    <linearGradient id="ringGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ffcc00" stop-opacity="0.8" />
      <stop offset="50%" stop-color="#ffcc00" stop-opacity="1" />
      <stop offset="100%" stop-color="#ffcc00" stop-opacity="0.8" />
    </linearGradient>
    
    <!-- Star filter for twinkle effect -->
    <filter id="twinkle" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="0.5" result="blur" />
      <feComponentTransfer in="blur">
        <feFuncA type="linear" slope="3" intercept="0" />
      </feComponentTransfer>
    </filter>
    
    <!-- Glow effect for planets -->
    <filter id="planetGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
      <feColorMatrix in="blur" type="matrix" values="
        1 0 0 0 0
        0 1 0 0 0
        0 0 1 0 0
        0 0 0 0.8 0
      " result="glow" />
      <feMerge>
        <feMergeNode in="glow" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
    
    <!-- Planet texture patterns -->
    <pattern id="firePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0,0 L5,10 L10,0 Z" fill="#ff6600" opacity="0.3" />
    </pattern>
    
    <pattern id="waterPattern" patternUnits="userSpaceOnUse" width="15" height="15">
      <path d="M0,7.5 Q7.5,0 15,7.5 T30,7.5" stroke="#ffffff" stroke-width="0.5" fill="none" opacity="0.2" />
    </pattern>
    
    <pattern id="craterPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="#666666" opacity="0.2" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
  
  <!-- Galaxy swirl in background -->
  <path d="M50,50 A150,150 0 0,1 250,200" stroke="url(#galaxyGradient)" stroke-width="80" fill="none" opacity="0.3" />
  
  <!-- Stars -->
  <g id="stars">
    <!-- Small stars -->
    <g fill="#ffffff">
      <circle cx="30" cy="20" r="0.8" filter="url(#twinkle)" />
      <circle cx="50" cy="40" r="0.6" filter="url(#twinkle)" />
      <circle cx="70" cy="15" r="0.7" filter="url(#twinkle)" />
      <circle cx="90" cy="35" r="0.5" filter="url(#twinkle)" />
      <circle cx="120" cy="25" r="0.9" filter="url(#twinkle)" />
      <circle cx="140" cy="10" r="0.6" filter="url(#twinkle)" />
      <circle cx="170" cy="30" r="0.7" filter="url(#twinkle)" />
      <circle cx="200" cy="15" r="0.8" filter="url(#twinkle)" />
      <circle cx="230" cy="40" r="0.6" filter="url(#twinkle)" />
      <circle cx="260" cy="25" r="0.7" filter="url(#twinkle)" />
      <circle cx="280" cy="10" r="0.5" filter="url(#twinkle)" />
      <circle cx="45" cy="60" r="0.7" filter="url(#twinkle)" />
      <circle cx="75" cy="70" r="0.8" filter="url(#twinkle)" />
      <circle cx="100" cy="55" r="0.6" filter="url(#twinkle)" />
      <circle cx="130" cy="65" r="0.7" filter="url(#twinkle)" />
      <circle cx="160" cy="50" r="0.9" filter="url(#twinkle)" />
      <circle cx="190" cy="70" r="0.5" filter="url(#twinkle)" />
      <circle cx="220" cy="60" r="0.8" filter="url(#twinkle)" />
      <circle cx="250" cy="55" r="0.7" filter="url(#twinkle)" />
      <circle cx="40" cy="90" r="0.6" filter="url(#twinkle)" />
      <circle cx="60" cy="100" r="0.8" filter="url(#twinkle)" />
      <circle cx="15" cy="120" r="0.7" filter="url(#twinkle)" />
      <circle cx="35" cy="140" r="0.5" filter="url(#twinkle)" />
      <circle cx="270" cy="85" r="0.8" filter="url(#twinkle)" />
      <circle cx="285" cy="120" r="0.7" filter="url(#twinkle)" />
      <circle cx="260" cy="140" r="0.6" filter="url(#twinkle)" />
      <circle cx="245" cy="160" r="0.5" filter="url(#twinkle)" />
      <circle cx="15" cy="170" r="0.7" filter="url(#twinkle)" />
      <circle cx="35" cy="190" r="0.8" filter="url(#twinkle)" />
      <circle cx="75" cy="210" r="0.6" filter="url(#twinkle)" />
      <circle cx="115" cy="20" r="0.7" filter="url(#twinkle)" />
    </g>
    
    <!-- Larger, colored stars -->
    <circle cx="55" cy="25" r="1.2" fill="#ffccff" filter="url(#twinkle)" />
    <circle cx="180" cy="45" r="1.3" fill="#ffffcc" filter="url(#twinkle)" />
    <circle cx="240" cy="30" r="1.4" fill="#ccffff" filter="url(#twinkle)" />
    <circle cx="85" cy="55" r="1.1" fill="#ccccff" filter="url(#twinkle)" />
    <circle cx="270" cy="60" r="1.2" fill="#ffffcc" filter="url(#twinkle)" />
    <circle cx="30" cy="180" r="1.3" fill="#ffccff" filter="url(#twinkle)" />
    <circle cx="280" cy="150" r="1.2" fill="#ccffff" filter="url(#twinkle)" />
    
    <!-- Few shooting stars -->
    <line x1="50" y1="60" x2="60" y2="70" stroke="#ffffff" stroke-width="0.5" stroke-linecap="round" opacity="0.8" />
    <line x1="200" y1="40" x2="215" y2="50" stroke="#ffffff" stroke-width="0.5" stroke-linecap="round" opacity="0.8" />
    <line x1="100" y1="25" x2="110" y2="40" stroke="#ffffff" stroke-width="0.5" stroke-linecap="round" opacity="0.8" />
  </g>
  
  <!-- Motion lines to indicate juggling -->
  <g stroke="#ffffff" stroke-width="0.8" stroke-dasharray="3,2" opacity="0.6" fill="none">
    <path d="M95,120 C120,100 140,90 160,90" />
    <path d="M160,90 C180,100 200,120 220,140" />
    <path d="M220,140 C200,160 150,180 90,175" />
    <path d="M90,175 C120,180 160,190 200,190" />
    <path d="M200,190 C160,170 120,150 95,120" />
  </g>
  
  <!-- Planets that the octopus is juggling -->
  <g id="planets">
    <!-- Planet 1 - Fiery red/orange planet -->
    <g transform="translate(95,120)">
      <circle r="15" fill="url(#planet1Gradient)" filter="url(#planetGlow)" />
      <circle r="15" fill="url(#firePattern)" opacity="0.5" />
      <!-- Volcanic features -->
      <path d="M-7,-7 L-5,-12 L-3,-7 Z" fill="#ffff00" opacity="0.8" />
      <path d="M5,8 L8,3 L10,8 Z" fill="#ffff00" opacity="0.8" />
      <!-- Atmosphere swirls -->
      <path d="M-10,0 Q-5,-10 0,-5 T10,0" fill="none" stroke="#ff8c00" stroke-width="1" opacity="0.7" />
      <path d="M-10,5 Q-2,15 5,5" fill="none" stroke="#ff8c00" stroke-width="1" opacity="0.7" />
    </g>
    
    <!-- Planet 2 - Blue water planet -->
    <g transform="translate(160,90)">
      <circle r="18" fill="url(#planet2Gradient)" filter="url(#planetGlow)" />
      <circle r="18" fill="url(#waterPattern)" />
      <!-- Cloud formations -->
      <path d="M-10,-5 Q-5,-12 0,-8 T10,-5" fill="#ffffff" opacity="0.5" />
      <path d="M0,10 Q5,15 10,10 T15,15" fill="#ffffff" opacity="0.4" />
      <!-- Continent-like features -->
      <path d="M5,0 Q10,-5 5,-10 T-5,-5 T-10,5 T0,10 Z" fill="#339966" opacity="0.5" />
      <circle cx="10" cy="-10" r="4" fill="#ffffff" opacity="0.3" />
    </g>
    
    <!-- Planet 3 - Pink planet with rings -->
    <g transform="translate(220,140)">
      <circle r="12" fill="url(#planet3Gradient)" filter="url(#planetGlow)" />
      <!-- Saturn-like rings -->
      <g transform="rotate(-15)">
        <ellipse cx="0" cy="0" rx="24" ry="3" fill="none" stroke="url(#ringGradient)" stroke-width="3" opacity="0.7" />
        <ellipse cx="0" cy="0" rx="20" ry="2" fill="none" stroke="#ffcc00" stroke-width="0.5" opacity="0.8" />
      </g>
      <!-- Surface details -->
      <circle cx="-5" cy="5" r="3" fill="#ff3399" opacity="0.5" />
      <circle cx="4" cy="-6" r="4" fill="#ff3399" opacity="0.4" />
    </g>
    
    <!-- Planet 4 - Green planet -->
    <g transform="translate(90,175)">
      <circle r="14" fill="url(#planet4Gradient)" filter="url(#planetGlow)" />
      <!-- Vegetation-like patterns -->
      <path d="M-5,-5 Q0,-10 5,-5 T10,0 T5,5 T0,10 T-5,5 T-10,0 Z" fill="#99ff99" opacity="0.4" />
      <circle cx="-5" cy="-5" r="3" fill="#99ff99" opacity="0.5" />
      <circle cx="5" cy="5" r="4" fill="#99ff99" opacity="0.4" />
      <!-- Small moon -->
      <circle cx="-20" cy="-10" r="3" fill="#cccccc" opacity="0.8" />
    </g>
    
    <!-- Planet 5 - Yellow moon-like planet -->
    <g transform="translate(200,190)">
      <circle r="10" fill="url(#planet5Gradient)" filter="url(#planetGlow)" />
      <circle r="10" fill="url(#craterPattern)" />
      <!-- Crater details -->
      <circle cx="-5" cy="-3" r="2" fill="#999966" opacity="0.6" />
      <circle cx="2" cy="3" r="3" fill="#999966" opacity="0.5" />
      <circle cx="4" cy="-4" r="1.5" fill="#999966" opacity="0.6" />
    </g>
  </g>
  
  <!-- Small particles/sparkles around planets -->
  <g fill="#ffffff" opacity="0.8">
    <circle cx="105" cy="115" r="0.8" />
    <circle cx="95" cy="125" r="0.6" />
    <circle cx="165" cy="85" r="0.7" />
    <circle cx="155" cy="95" r="0.6" />
    <circle cx="225" cy="135" r="0.8" />
    <circle cx="215" cy="145" r="0.7" />
    <circle cx="85" cy="180" r="0.6" />
    <circle cx="95" cy="170" r="0.8" />
    <circle cx="205" cy="185" r="0.7" />
    <circle cx="195" cy="195" r="0.6" />
    <circle cx="110" cy="120" r="0.7" />
    <circle cx="170" cy="95" r="0.8" />
    <circle cx="220" cy="130" r="0.6" />
    <circle cx="95" cy="165" r="0.7" />
    <circle cx="190" cy="190" r="0.8" />
  </g>
  
  <!-- Octopus -->
  <g id="octopus" transform="translate(150,230)">
    <!-- Octopus head -->
    <ellipse cx="0" cy="0" rx="30" ry="35" fill="url(#octopusGradient)" />
    
    <!-- Octopus texture/pattern -->
    <path d="M-15,-20 Q-5,-25 5,-20 T25,-15" fill="none" stroke="#ff66cc" stroke-width="1" opacity="0.5" />
    <path d="M-20,-5 Q-25,5 -20,15 T-15,25" fill="none" stroke="#ff66cc" stroke-width="1" opacity="0.5" />
    <path d="M15,25 Q5,30 -5,25 T-15,20" fill="none" stroke="#ff66cc" stroke-width="1" opacity="0.5" />
    <path d="M20,5 Q25,-5 20,-15 T15,-25" fill="none" stroke="#ff66cc" stroke-width="1" opacity="0.5" />
    
    <!-- Octopus eyes -->
    <circle cx="-12" cy="-12" r="7" fill="white" />
    <circle cx="12" cy="-12" r="7" fill="white" />
    <circle cx="-12" cy="-12" r="4" fill="black" />
    <circle cx="12" cy="-12" r="4" fill="black" />
    <circle cx="-14" cy="-14" r="1.5" fill="white" />
    <circle cx="10" cy="-14" r="1.5" fill="white" />
    
    <!-- Octopus expressions -->
    <path d="M-10,8 Q0,16 10,8" fill="none" stroke="#ff0066" stroke-width="2" stroke-linecap="round" />
    <path d="M-15,-23 Q-10,-25 -5,-23" fill="none" stroke="#ff99cc" stroke-width="1.5" stroke-linecap="round" />
    <path d="M5,-23 Q10,-25 15,-23" fill="none" stroke="#ff99cc" stroke-width="1.5" stroke-linecap="round" />
    
    <!-- Octopus tentacles -->
    <!-- Each tentacle is a path with bezier curves to create a flowing, wavy appearance -->
    
    <!-- Tentacle 1 - reaching for planet 1 -->
    <path d="M-25,-10 C-45,-40 -70,-35 -55,-90" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tentacle 2 - reaching for planet 2 -->
    <path d="M-20,15 C-30,40 -10,70 10,-55" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tentacle 3 - reaching for planet 3 -->
    <path d="M10,20 C20,35 40,40 70,-20" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tentacle 4 - reaching for planet 4 -->
    <path d="M25,0 C45,15 60,-20 -40,-45" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tentacle 5 - waving/balancing -->
    <path d="M-25,-20 C-40,-35 -60,-15 -50,25" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tentacle 6 - waving/balancing -->
    <path d="M-5,-30 C-15,-50 10,-70 50,5" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tentacle 7 - reaching for planet 5 -->
    <path d="M20,-20 C35,-30 45,-10 50,30" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Tentacle 8 - waving/balancing -->
    <path d="M0,25 C10,45 -20,55 -65,40" 
          fill="none" stroke="url(#tentacleGradient)" stroke-width="7" stroke-linecap="round" />
    
    <!-- Suction cups on tentacles -->
    <g fill="#ff80cc">
      <circle cx="-55" cy="-85" r="3.5" />
      <circle cx="-49" cy="-70" r="2.5" />
      <circle cx="-45" cy="-50" r="2" />
      
      <circle cx="8" cy="-50" r="3.5" />
      <circle cx="0" cy="-35" r="2.5" />
      <circle cx="-5" cy="-15" r="2" />
      
      <circle cx="68" cy="-18" r="3.5" />
      <circle cx="50" cy="-10" r="2.5" />
      <circle cx="35" cy="0" r="2" />
      
      <circle cx="-37" cy="-42" r="3.5" />
      <circle cx="-20" cy="-30" r="2.5" />
      <circle cx="-5" cy="-15" r="2" />
      
      <circle cx="-50" cy="22" r="3.5" />
      <circle cx="-45" cy="10" r="2.5" />
      <circle cx="-35" cy="-5" r="2" />
      
      <circle cx="48" cy="2" r="3.5" />
      <circle cx="40" cy="-15" r="2.5" />
      <circle cx="20" cy="-25" r="2" />
      
      <circle cx="50" cy="28" r="3.5" />
      <circle cx="42" cy="15" r="2.5" />
      <circle cx="35" cy="0" r="2" />
      
      <circle cx="-62" cy="38" r="3.5" />
      <circle cx="-45" cy="40" r="2.5" />
      <circle cx="-20" cy="35" r="2" />
    </g>
  </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#020024"/>
      <stop offset="70%" stop-color="#090979"/>
      <stop offset="100%" stop-color="#00d4ff"/>
    </radialGradient>
    
    <radialGradient id="planet1" cx="30%" cy="30%">
      <stop offset="10%" stop-color="#ff6b6b"/>
      <stop offset="90%" stop-color="#ff0000"/>
    </radialGradient>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="300" height="300">
      <rect width="300" height="300" fill="transparent"/>
      <circle cx="50" cy="120" r="1.2" fill="white" filter="url(#glow)"/>
      <circle cx="200" cy="80" r="0.8" fill="#89CFF0" filter="url(#glow)"/>
      <circle cx="280" cy="40" r="1.5" fill="white" filter="url(#glow)"/>
    </pattern>
  </defs>

  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <rect width="300" height="300" fill="url(#starPattern)" opacity="0.7"/>

  <!-- Octopus -->
  <path d="M150 200 Q160 180 170 190 Q180 200 150 210 Q120 200 130 190 Q140 180 150 200Z" fill="#4B0082"/>
  <path d="M150 210 C120 230 180 240 150 250" fill="#800080"/>
  <path d="M110 190 Q100 200 90 210 Q80 220 100 230 Q120 240 130 230" fill="#9932CC" opacity="0.8"/>
  
  <!-- Tentacles -->
  <path d="M150 220 Q140 250 130 270 Q120 290 140 300" fill="#9370DB" stroke="#4B0082"/>
  <path d="M160 220 Q170 250 180 270 Q190 290 170 300" fill="#9370DB" stroke="#4B0082"/>

  <!-- Planets -->
  <circle cx="100" cy="100" r="25" fill="url(#planet1)" filter="url(#glow)">
    <animateTransform attributeName="transform" type="translate" values="0,0; -5,-8; 0,0" dur="3s" repeatCount="indefinite"/>
  </circle>
  
  <circle cx="200" cy="130" r="18" fill="#32CD32" filter="url(#glow)">
    <animateTransform attributeName="transform" type="rotate" values="0; 360" dur="8s" repeatCount="indefinite" transform-origin="200 130"/>
  </circle>
  
  <circle cx="220" cy="70" r="22">
    <animate attributeName="fill" values="#FFD700; #FFA500; #FFD700" dur="4s" repeatCount="indefinite"/>
    <filter id="glow"/>
  </circle>

  <!-- Stardust trails -->
  <path d="M100 100 Q110 90 120 95" stroke="#89CFF0" stroke-width="0.5" opacity="0.7"/>
  <path d="M200 130 Q210 120 220 125" stroke="#32CD32" stroke-width="0.5" opacity="0.7"/>
</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 submission shows a clear and colorful depiction of an octopus juggling planets under a starry sky, demonstrating strong adherence to the prompt.

    The technical quality and visual appeal are high, with well-defined elements and playful creativity.

    Player 2's submission is abstract and lacks clarity, making it difficult to interpret in relation to the prompt.

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
139
Player 2
16
Rectangles

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

Player 1
1
Player 2
3
Circles

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

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

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

Player 1
13
Player 2

Visual Effects Metrics

Gradients

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

Player 1
10
Player 2
2
Patterns

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

Player 1
3
Player 2
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
25
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
41
Player 2
13

Interactivity Metrics

Animations

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

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
7
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
86
Player 2
22
Max Group Nesting

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

Player 1
2
Player 2
Defs Elements

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

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