Back

SVG Drawing Match #900

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clockwork octopus juggling planets in a starry void"

SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Space background gradient -->
    <radialGradient id="spaceGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#0a0a2a" />
      <stop offset="100%" stop-color="#000005" />
    </radialGradient>

    <!-- Star pattern -->
    <pattern id="starPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" opacity="0.8" />
      <circle cx="25" cy="30" r="0.6" fill="white" opacity="0.7" />
      <circle cx="40" cy="15" r="1.0" fill="white" opacity="0.9" />
      <circle cx="55" cy="45" r="0.7" fill="white" opacity="0.8" />
      <circle cx="70" cy="20" r="0.5" fill="white" opacity="0.6" />
      <circle cx="85" cy="50" r="0.9" fill="white" opacity="0.8" />
      <circle cx="15" cy="65" r="0.7" fill="white" opacity="0.7" />
      <circle cx="30" cy="80" r="0.6" fill="white" opacity="0.8" />
      <circle cx="45" cy="60" r="0.8" fill="white" opacity="0.7" />
      <circle cx="60" cy="75" r="1.0" fill="white" opacity="0.9" />
      <circle cx="75" cy="90" r="0.6" fill="white" opacity="0.7" />
      <circle cx="90" cy="5" r="0.7" fill="white" opacity="0.8" />
    </pattern>

    <!-- Metal gradient for octopus body -->
    <linearGradient id="metalGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#c0c0c0" />
      <stop offset="50%" stop-color="#a0a0a0" />
      <stop offset="100%" stop-color="#808080" />
    </linearGradient>

    <!-- Gold gradient for gears -->
    <linearGradient id="goldGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffd700" />
      <stop offset="50%" stop-color="#ffb900" />
      <stop offset="100%" stop-color="#ff8c00" />
    </linearGradient>

    <!-- Planet gradients -->
    <radialGradient id="planet1Gradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ff6347" />
      <stop offset="100%" stop-color="#8b0000" />
    </radialGradient>

    <radialGradient id="planet2Gradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#add8e6" />
      <stop offset="100%" stop-color="#00008b" />
    </radialGradient>

    <radialGradient id="planet3Gradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#ffd700" />
      <stop offset="100%" stop-color="#ff8c00" />
    </radialGradient>

    <radialGradient id="planet4Gradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#98fb98" />
      <stop offset="100%" stop-color="#006400" />
    </radialGradient>

    <radialGradient id="planet5Gradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#e6e6fa" />
      <stop offset="100%" stop-color="#483d8b" />
    </radialGradient>
    
    <!-- Glowing effect for planets -->
    <filter id="glow">
      <feGaussianBlur stdDeviation="2.5" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>

    <!-- Gear pattern for octopus -->
    <pattern id="gearPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="8" fill="none" stroke="#daa520" stroke-width="1" />
      <circle cx="10" cy="10" r="5" fill="none" stroke="#daa520" stroke-width="0.5" />
      <circle cx="10" cy="10" r="2" fill="#daa520" />
      <line x1="10" y1="0" x2="10" y2="2" stroke="#daa520" stroke-width="1" />
      <line x1="10" y1="18" x2="10" y2="20" stroke="#daa520" stroke-width="1" />
      <line x1="0" y1="10" x2="2" y2="10" stroke="#daa520" stroke-width="1" />
      <line x1="18" y1="10" x2="20" y2="10" stroke="#daa520" stroke-width="1" />
    </pattern>

    <!-- Clock face pattern -->
    <pattern id="clockPattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse">
      <circle cx="20" cy="20" r="18" fill="white" opacity="0.2" />
      <circle cx="20" cy="20" r="16" fill="none" stroke="#daa520" stroke-width="1" />
      <!-- Clock numbers -->
      <text x="19" y="8" font-size="4" fill="#daa520" text-anchor="middle">12</text>
      <text x="32" y="21" font-size="4" fill="#daa520" text-anchor="middle">3</text>
      <text x="19" y="34" font-size="4" fill="#daa520" text-anchor="middle">6</text>
      <text x="7" y="21" font-size="4" fill="#daa520" text-anchor="middle">9</text>
      <!-- Clock hands -->
      <line x1="20" y1="20" x2="20" y2="10" stroke="#daa520" stroke-width="1" />
      <line x1="20" y1="20" x2="28" y2="20" stroke="#daa520" stroke-width="0.8" />
      <circle cx="20" cy="20" r="1.5" fill="#daa520" />
    </pattern>
  </defs>

  <!-- Background starry void -->
  <rect x="0" y="0" width="300" height="300" fill="url(#spaceGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" />
  
  <!-- Distant nebula -->
  <ellipse cx="50" cy="40" rx="80" ry="40" fill="#5000ff" opacity="0.1" />
  <ellipse cx="250" cy="260" rx="100" ry="50" fill="#ff00ff" opacity="0.1" />
  
  <!-- Some larger stars -->
  <circle cx="30" cy="30" r="1.2" fill="white" />
  <circle cx="270" cy="50" r="1.5" fill="white" />
  <circle cx="180" cy="280" r="1.3" fill="white" />
  <circle cx="250" cy="180" r="1.4" fill="white" />
  <circle cx="70" cy="220" r="1.2" fill="white" />

  <!-- Motion lines for planets being juggled -->
  <path d="M130,130 C120,115 105,100 95,95" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="2,3" opacity="0.6" />
  <path d="M150,130 C150,115 150,95 150,80" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="2,3" opacity="0.6" />
  <path d="M170,130 C180,115 195,100 205,95" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="2,3" opacity="0.6" />
  <path d="M170,170 C180,185 195,200 205,205" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="2,3" opacity="0.6" />
  <path d="M130,170 C120,185 105,200 95,205" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="2,3" opacity="0.6" />

  <!-- Planets being juggled with glow effect -->
  <g filter="url(#glow)">
    <circle cx="95" cy="95" r="15" fill="url(#planet1Gradient)" stroke="#ffffff" stroke-width="0.5">
      <!-- Planet 1 details - Mars-like -->
      <ellipse cx="95" cy="95" rx="8" ry="3" fill="#c65d53" opacity="0.3" />
      <circle cx="90" cy="92" r="3" fill="#b44b42" opacity="0.4" />
      <circle cx="100" cy="98" r="2" fill="#b44b42" opacity="0.4" />
    </circle>
  </g>

  <g filter="url(#glow)">
    <circle cx="150" cy="80" r="12" fill="url(#planet2Gradient)" stroke="#ffffff" stroke-width="0.5">
      <!-- Planet 2 details - Earth-like -->
      <path d="M144,75 C147,72 153,72 156,75 C159,78 159,82 156,85 C153,88 147,88 144,85 C141,82 141,78 144,75 Z" fill="#1e7b1e" opacity="0.6" />
      <path d="M145,85 C148,82 152,82 155,85 C158,88 158,92 155,95 C152,98 148,98 145,95 C142,92 142,88 145,85 Z" fill="#1e7b1e" opacity="0.6" />
      <circle cx="150" cy="80" r="4" fill="#eeeeff" opacity="0.3" transform="rotate(-20,150,80)" />
    </circle>
  </g>

  <g filter="url(#glow)">
    <circle cx="205" cy="95" r="18" fill="url(#planet3Gradient)" stroke="#ffffff" stroke-width="0.5">
      <!-- Planet 3 details - Gas giant like Jupiter -->
      <ellipse cx="205" cy="95" rx="18" ry="4" fill="url(#goldGradient)" opacity="0.3" />
      <ellipse cx="205" cy="90" rx="14" ry="2" fill="#ee9a49" opacity="0.4" />
      <ellipse cx="205" cy="100" rx="10" ry="2" fill="#ee9a49" opacity="0.4" />
      <circle cx="210" cy="90" r="4" fill="#db7a1c" opacity="0.5" />
    </circle>
  </g>

  <g filter="url(#glow)">
    <circle cx="205" cy="205" r="13" fill="url(#planet4Gradient)" stroke="#ffffff" stroke-width="0.5">
      <!-- Planet 4 details - Alien world -->
      <path d="M199,199 L211,201 L208,211 L200,208 Z" fill="#3ec470" opacity="0.5" />
      <path d="M205,195 L214,200 L208,211 L200,209 Z" fill="#3ec470" opacity="0.5" />
      <circle cx="202" cy="202" r="2" fill="#eeffee" opacity="0.7" />
      <circle cx="208" cy="204" r="1.5" fill="#eeffee" opacity="0.7" />
    </circle>
  </g>

  <g filter="url(#glow)">
    <circle cx="95" cy="205" r="14" fill="url(#planet5Gradient)" stroke="#ffffff" stroke-width="0.5">
      <!-- Planet 5 details - Saturn-like -->
      <ellipse cx="95" cy="205" rx="20" ry="2" fill="#a89ae9" opacity="0.6" transform="rotate(10,95,205)" />
      <ellipse cx="95" cy="205" rx="18" ry="1" fill="#000000" opacity="0.3" transform="rotate(10,95,205)" />
      <ellipse cx="95" cy="205" rx="16" ry="0.5" fill="#a89ae9" opacity="0.6" transform="rotate(10,95,205)" />
      <circle cx="92" cy="202" r="3" fill="#8673bf" opacity="0.5" />
      <circle cx="98" cy="208" r="2" fill="#8673bf" opacity="0.5" />
    </circle>
  </g>

  <!-- Now let's create the clockwork octopus -->
  <!-- Octopus tentacles -->
  <!-- I'll create 8 tentacles coming out from the body with a mechanical, jointed appearance -->

  <!-- Tentacle 1 (top-left) -->
  <path d="M130,135 C120,120 110,110 95,95" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="120" cy="125" r="2.5" fill="url(#gearPattern)" />
  <circle cx="110" cy="115" r="2.5" fill="url(#gearPattern)" />
  <circle cx="100" cy="105" r="2.5" fill="url(#gearPattern)" />
  
  <!-- Tentacle 2 (top) -->
  <path d="M150,125 C150,110 150,95 150,80" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="150" cy="115" r="2.5" fill="url(#gearPattern)" />
  <circle cx="150" cy="105" r="2.5" fill="url(#gearPattern)" />
  <circle cx="150" cy="95" r="2.5" fill="url(#gearPattern)" />
  
  <!-- Tentacle 3 (top-right) -->
  <path d="M170,135 C180,120 190,110 205,95" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="180" cy="125" r="2.5" fill="url(#gearPattern)" />
  <circle cx="190" cy="115" r="2.5" fill="url(#gearPattern)" />
  <circle cx="200" cy="105" r="2.5" fill="url(#gearPattern)" />
  
  <!-- Tentacle 4 (right) -->
  <path d="M175,150 C190,150 205,150 220,150" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="185" cy="150" r="2.5" fill="url(#gearPattern)" />
  <circle cx="195" cy="150" r="2.5" fill="url(#gearPattern)" />
  <circle cx="205" cy="150" r="2.5" fill="url(#gearPattern)" />
  
  <!-- Tentacle 5 (bottom-right) -->
  <path d="M170,165 C180,180 190,190 205,205" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="180" cy="175" r="2.5" fill="url(#gearPattern)" />
  <circle cx="190" cy="185" r="2.5" fill="url(#gearPattern)" />
  <circle cx="200" cy="195" r="2.5" fill="url(#gearPattern)" />
  
  <!-- Tentacle 6 (bottom) -->
  <path d="M150,175 C150,190 150,205 150,220" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="150" cy="185" r="2.5" fill="url(#gearPattern)" />
  <circle cx="150" cy="195" r="2.5" fill="url(#gearPattern)" />
  <circle cx="150" cy="205" r="2.5" fill="url(#gearPattern)" />
  
  <!-- Tentacle 7 (bottom-left) -->
  <path d="M130,165 C120,180 110,190 95,205" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="120" cy="175" r="2.5" fill="url(#gearPattern)" />
  <circle cx="110" cy="185" r="2.5" fill="url(#gearPattern)" />
  <circle cx="100" cy="195" r="2.5" fill="url(#gearPattern)" />
  
  <!-- Tentacle 8 (left) -->
  <path d="M125,150 C110,150 95,150 80,150" fill="none" stroke="url(#metalGradient)" stroke-width="4" stroke-linecap="round" />
  <circle cx="115" cy="150" r="2.5" fill="url(#gearPattern)" />
  <circle cx="105" cy="150" r="2.5" fill="url(#gearPattern)" />
  <circle cx="95" cy="150" r="2.5" fill="url(#gearPattern)" />

  <!-- Octopus body -->
  <circle cx="150" cy="150" r="25" fill="url(#metalGradient)" stroke="#505050" stroke-width="1.5" />
  <circle cx="150" cy="150" r="20" fill="url(#clockPattern)" opacity="0.9" />

  <!-- Gears around the octopus body -->
  <circle cx="135" cy="135" r="8" fill="url(#goldGradient)" stroke="#b8860b" stroke-width="0.5" />
  <path d="M135,127 L133,125 L137,125 Z" fill="#daa520" />
  <path d="M143,135 L145,133 L145,137 Z" fill="#daa520" />
  <path d="M135,143 L137,145 L133,145 Z" fill="#daa520" />
  <path d="M127,135 L125,137 L125,133 Z" fill="#daa520" />
  
  <circle cx="165" cy="138" r="6" fill="url(#goldGradient)" stroke="#b8860b" stroke-width="0.5" />
  <path d="M165,132 L163,130 L167,130 Z" fill="#daa520" />
  <path d="M171,138 L173,136 L173,140 Z" fill="#daa520" />
  <path d="M165,144 L167,146 L163,146 Z" fill="#daa520" />
  <path d="M159,138 L157,140 L157,136 Z" fill="#daa520" />
  
  <circle cx="140" cy="165" r="7" fill="url(#goldGradient)" stroke="#b8860b" stroke-width="0.5" />
  <path d="M140,158 L138,156 L142,156 Z" fill="#daa520" />
  <path d="M147,165 L149,163 L149,167 Z" fill="#daa520" />
  <path d="M140,172 L142,174 L138,174 Z" fill="#daa520" />
  <path d="M133,165 L131,167 L131,163 Z" fill="#daa520" />

  <!-- Additional decorative gears -->
  <circle cx="160" cy="165" r="4" fill="url(#goldGradient)" stroke="#b8860b" stroke-width="0.3" />
  <path d="M160,161 L159,160 L161,160 Z" fill="#daa520" />
  <path d="M164,165 L165,164 L165,166 Z" fill="#daa520" />
  <path d="M160,169 L161,170 L159,170 Z" fill="#daa520" />
  <path d="M156,165 L155,166 L155,164 Z" fill="#daa520" />

  <!-- Octopus eye details -->
  <circle cx="142" cy="145" r="4" fill="#000000" />
  <circle cx="142" cy="145" r="1.5" fill="#ff0000" />
  <circle cx="158" cy="145" r="4" fill="#000000" />
  <circle cx="158" cy="145" r="1.5" fill="#ff0000" />

  <!-- Small key on the back of the octopus -->
  <path d="M160,167 l5,0 l0,5 l-2,0 l0,-3 l-3,0 Z" fill="#daa520" />
  <rect x="162" y="167" width="2" height="8" fill="#daa520" />
  
  <!-- Additional stars for depth -->
  <circle cx="50" cy="120" r="1" fill="white" opacity="0.9" />
  <circle cx="240" cy="70" r="1.2" fill="white" opacity="0.8" />
  <circle cx="210" cy="250" r="0.8" fill="white" opacity="0.9" />
  <circle cx="60" cy="170" r="1.1" fill="white" opacity="0.8" />
  <circle cx="180" cy="40" r="0.9" fill="white" opacity="0.9" />

  <!-- Steam/energy effects -->
  <path d="M145,125 C143,115 146,110 141,105 C138,100 140,95 145,92" fill="none" stroke="white" stroke-width="0.8" stroke-dasharray="1,2" opacity="0.6" />
  <path d="M155,125 C157,115 154,110 159,105 C162,100 160,95 155,92" fill="none" stroke="white" stroke-width="0.8" stroke-dasharray="1,2" opacity="0.6" />
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#000020" />
      <stop offset="1" stop-color="#000530" />
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#bgGradient)" />

  <!-- Stars -->
  <g>
    <circle cx="50" cy="50" r="2" fill="#ffffff" />
    <circle cx="120" cy="80" r="1" fill="#ffffff" />
    <circle cx="180" cy="150" r="2" fill="#ffffff" />
    <circle cx="250" cy="220" r="1" fill="#ffffff" />
    <circle cx="270" cy="100" r="2" fill="#ffffff" />
    <circle cx="70" cy="200" r="1" fill="#ffffff" />
  </g>

  <!-- Planets -->
  <g>
    <circle cx="150" cy="150" r="15" fill="url(#planet1)" />
    <circle cx="180" cy="180" r="10" fill="url(#planet2)" />
    <circle cx="120" cy="120" r="10" fill="url(#planet3)" />
    <defs>
      <linearGradient id="planet1" x1="0" y1="0" x2="1" y2="1">
        <stop offset="0" stop-color="#ff69b4" />
        <stop offset="1" stop-color="#ff1493" />
      </linearGradient>
      <linearGradient id="planet2" x1="0" y1="0" x2="1" y2="1">
        <stop offset="0" stop-color="#32cd32" />
        <stop offset="1" stop-color="#228b22" />
      </linearGradient>
      <linearGradient id="planet3" x1="0" y1="0" x2="1" y2="1">
        <stop offset="0" stop-color="#00bfff" />
        <stop offset="1" stop-color="#0000ff" />
      </linearGradient>
    </defs>
  </g>

  <!-- Clockwork Octopus -->
  <g>
    <circle cx="150" cy="150" r="25" fill="#4b0082" />
    <circle cx="150" cy="150" r="20" fill="url(#clockwork)" />
    <defs>
      <pattern id="clockwork" patternUnits="userSpaceOnUse" width="4" height="4">
        <rect width="4" height="4" fill="#4b0082" />
        <circle cx="2" cy="2" r="1" fill="#ffffff" />
      </pattern>
    </defs>
    <path d="M150,150 l-50,0 a20,20 0 0,0 0,40 l50,0 a20,20 0 0,0 0,-40 z" fill="#4b0082" />
    <path d="M150,150 l50,0 a20,20 0 0,1 0,40 l-50,0 a20,20 0 0,1 0,-40 z" fill="#4b0082" />
    <path d="M150,150 l0,-50 a20,20 0 0,0 40,0 l0,50 a20,20 0 0,0 -40,0 z" fill="#4b0082" />
    <path d="M150,150 l0,50 a20,20 0 0,1 -40,0 l0,-50 a20,20 0 0,1 40,0 z" fill="#4b0082" />
  </g>

  <!-- Tentacles -->
  <g>
    <path d="M100,150 c0,0 0,30 30,30 c0,0 30,0 30,-30" fill="none" stroke="#4b0082" stroke-width="5" />
    <path d="M200,150 c0,0 0,-30 -30,-30 c0,0 -30,0 -30,30" fill="none" stroke="#4b0082" stroke-width="5" />
    <path d="M150,100 c0,0 -30,0 -30,30 c0,0 30,0 30,30" fill="none" stroke="#4b0082" stroke-width="5" />
    <path d="M150,200 c0,0 30,0 30,-30 c0,0 -30,0 -30,-30" fill="none" stroke="#4b0082" stroke-width="5" />
  </g>

  <!-- Juggling Planets -->
  <g>
    <circle cx="130" cy="170" r="10" fill="url(#planet1)" />
    <circle cx="170" cy="130" r="10" fill="url(#planet2)" />
    <circle cx="170" cy="170" r="10" fill="url(#planet3)" />
  </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 submission effectively captures the concept of a 'clockwork octopus' with visible mechanical elements and multiple arms juggling colorful planets, set against a starry background, demonstrating strong adherence to the prompt.

    The technical execution and creativity are clear, making it more visually appealing and conceptually aligned compared to Player 2's abstract representation.

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
129
Player 2
25
Rectangles

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

Player 1
3
Player 2
2
Circles

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

Player 1
75
Player 2
15
Ellipses

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

Player 1
9
Player 2
Lines

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

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

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

Player 1
5
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
34
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
34
Player 2
10

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
4
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
125
Player 2
36
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
12
Player 2
5
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
4
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