Back

SVG Drawing Match #2303

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing a cheetah on a futuristic neon-lit track."

SVG by o4-mini high (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="75%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#0d0d1e"/>
      <stop offset="50%" stop-color="#1a1a3d"/>
      <stop offset="100%" stop-color="#000"/>
    </radialGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="4" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <linearGradient id="trackGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#00ffff"/>
      <stop offset="50%" stop-color="#ff00ff"/>
      <stop offset="100%" stop-color="#ffff00"/>
    </linearGradient>
    <radialGradient id="shellGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff00ff"/>
      <stop offset="100%" stop-color="#00ffff"/>
    </radialGradient>
    <linearGradient id="cheetahGrad" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#fffa00"/>
      <stop offset="100%" stop-color="#ff7f00"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  <!-- Neon Track -->
  <polygon points="30,280 270,280 240,200 60,200" fill="#111" stroke="url(#trackGradient)" stroke-width="2" filter="url(#glow)"/>
  <polyline points="150,200 150,280" stroke="#888" stroke-dasharray="5,5" stroke-width="1"/>
  <g stroke="#444" stroke-width="1" opacity="0.6">
    <line x1="60" y1="200" x2="90" y2="280"/>
    <line x1="90" y1="200" x2="135" y2="280"/>
    <line x1="120" y1="200" x2="180" y2="280"/>
    <line x1="150" y1="200" x2="225" y2="280"/>
    <line x1="180" y1="200" x2="255" y2="280"/>
  </g>
  <!-- Snail -->
  <g transform="translate(70,250)">
    <path d="M-15,0 C-25,-5 -25,-15 -15,-20 C-5,-25 10,-25 20,-20 C30,-15 30,-5 20,0 Z" fill="#7fff00" filter="url(#glow)"/>
    <circle cx="-3" cy="-8" r="13" fill="url(#shellGrad)" filter="url(#glow)"/>
    <circle cx="-3" cy="-8" r="10" fill="none" stroke="#fff" stroke-width="1" opacity="0.8"/>
    <circle cx="-3" cy="-8" r="6" fill="none" stroke="#fff" stroke-width="1" opacity="0.8"/>
    <line x1="20" y1="-15" x2="35" y2="-30" stroke="#7fff00" stroke-width="3" filter="url(#glow)"/>
    <circle cx="35" cy="-30" r="3" fill="#7fff00" filter="url(#glow)"/>
    <line x1="20" y1="-10" x2="35" y2="-20" stroke="#7fff00" stroke-width="3" filter="url(#glow)"/>
    <circle cx="35" cy="-20" r="3" fill="#7fff00" filter="url(#glow)"/>
    <path d="M-15,0 C-30,5 -40,15 -45,25" stroke="#00ffff" stroke-width="1" stroke-dasharray="4,2" fill="none" opacity="0.7"/>
  </g>
  <!-- Cheetah -->
  <g transform="translate(180,230)">
    <ellipse cx="0" cy="0" rx="50" ry="20" fill="url(#cheetahGrad)" filter="url(#glow)"/>
    <circle cx="60" cy="-10" r="12" fill="url(#cheetahGrad)" filter="url(#glow)"/>
    <path d="M55,-20 L50,-35 L65,-25 Z" fill="url(#cheetahGrad)" filter="url(#glow)"/>
    <path d="M65,-20 L75,-30 L70,-15 Z" fill="url(#cheetahGrad)" filter="url(#glow)"/>
    <ellipse cx="-20" cy="20" rx="10" ry="3" transform="rotate(20 -20,20)" fill="url(#cheetahGrad)"/>
    <ellipse cx="20" cy="20" rx="10" ry="3" transform="rotate(-20 20,20)" fill="url(#cheetahGrad)"/>
    <ellipse cx="-40" cy="5" rx="8" ry="2.5" transform="rotate(40 -40,5)" fill="url(#cheetahGrad)"/>
    <ellipse cx="40" cy="5" rx="8" ry="2.5" transform="rotate(-40 40,5)" fill="url(#cheetahGrad)"/>
    <path d="M-50,0 C-70,-20 -80,20 -50,10" stroke="url(#cheetahGrad)" stroke-width="4" fill="none"/>
    <circle cx="0" cy="0" r="4" fill="#333"/>
    <circle cx="15" cy="-5" r="3" fill="#333"/>
    <circle cx="-10" cy="5" r="3" fill="#333"/>
    <circle cx="10" cy="10" r="2" fill="#333"/>
    <circle cx="-20" cy="-5" r="2" fill="#333"/>
    <circle cx="65" cy="-10" r="3" fill="#000"/>
    <g stroke="#ffea00" stroke-width="2" opacity="0.8">
      <line x1="-60" y1="-10" x2="-100" y2="-15"/>
      <line x1="-60" y1="10" x2="-100" y2="5"/>
      <line x1="-40" y1="20" x2="-80" y2="20"/>
    </g>
  </g>
</svg>
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>
    <!-- Gradients -->
    <linearGradient id="trackGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#000033;"/>
      <stop offset="100%" style="stop-color:#000066;"/>
    </linearGradient>
    
    <linearGradient id="neonPink" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff00ff;"/>
      <stop offset="100%" style="stop-color:#ff66ff;"/>
    </linearGradient>
    
    <linearGradient id="neonBlue" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00ffff;"/>
      <stop offset="100%" style="stop-color:#66ffff;"/>
    </linearGradient>
    
    <linearGradient id="snailShell" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#aa00aa;"/>
      <stop offset="50%" style="stop-color:#ff00ff;"/>
      <stop offset="100%" style="stop-color:#ff99ff;"/>
    </linearGradient>
    
    <linearGradient id="cheetahGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffcc00;"/>
      <stop offset="100%" style="stop-color:#ff6600;"/>
    </linearGradient>
    
    <radialGradient id="glowGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffffff;"/>
      <stop offset="20%" style="stop-color:#ffff99;"/>
      <stop offset="100%" style="stop-color:rgba(255,255,0,0);"/>
    </radialGradient>
    
    <!-- Patterns -->
    <pattern id="gridPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="none"/>
      <path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="#00ffff" stroke-width="0.2" opacity="0.3"/>
    </pattern>
    
    <!-- Filters for glow effects -->
    <filter id="neonGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    
    <filter id="softGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    
    <filter id="cheetahFilter" x="-10%" y="-10%" width="120%" height="120%">
      <feGaussianBlur stdDeviation="1" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    
    <!-- Animated elements -->
    <linearGradient id="animatedGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff00ff;">
        <animate attributeName="stop-color" values="#ff00ff;#00ffff;#ff00ff" dur="3s" repeatCount="indefinite"/>
      </stop>
      <stop offset="100%" style="stop-color:#00ffff;">
        <animate attributeName="stop-color" values="#00ffff;#ff00ff;#00ffff" dur="3s" repeatCount="indefinite"/>
      </stop>
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#000011"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#gridPattern)"/>
  
  <!-- Star field background -->
  <g>
    <circle cx="20" cy="30" r="0.5" fill="#ffffff"/>
    <circle cx="50" cy="60" r="0.3" fill="#ffffff"/>
    <circle cx="80" cy="20" r="0.4" fill="#ffffff"/>
    <circle cx="120" cy="40" r="0.6" fill="#ffffff"/>
    <circle cx="150" cy="15" r="0.3" fill="#ffffff"/>
    <circle cx="180" cy="35" r="0.5" fill="#ffffff"/>
    <circle cx="220" cy="25" r="0.4" fill="#ffffff"/>
    <circle cx="260" cy="45" r="0.6" fill="#ffffff"/>
    <circle cx="30" cy="280" r="0.5" fill="#ffffff"/>
    <circle cx="60" cy="250" r="0.3" fill="#ffffff"/>
    <circle cx="100" cy="270" r="0.4" fill="#ffffff"/>
    <circle cx="140" cy="260" r="0.6" fill="#ffffff"/>
    <circle cx="180" cy="280" r="0.3" fill="#ffffff"/>
    <circle cx="220" cy="265" r="0.5" fill="#ffffff"/>
    <circle cx="260" cy="275" r="0.4" fill="#ffffff"/>
    <circle cx="290" cy="260" r="0.6" fill="#ffffff"/>
  </g>
  
  <!-- Track -->
  <path d="M 20,100 C 50,20 250,20 280,100 S 250,180 20,180 Z" fill="url(#trackGradient)" stroke="#333377" stroke-width="2"/>
  
  <!-- Track lane markers -->
  <path d="M 40,140 C 60,100 240,100 260,140" fill="none" stroke="#ffffff" stroke-width="1" stroke-dasharray="5,5"/>
  <path d="M 30,160 C 60,80 240,80 270,160" fill="none" stroke="#ffffff" stroke-width="1" stroke-dasharray="5,5"/>
  
  <!-- Neon track outlines -->
  <path d="M 20,100 C 50,20 250,20 280,100 S 250,180 20,180 Z" fill="none" stroke="url(#neonBlue)" stroke-width="2" filter="url(#neonGlow)"/>
  <path d="M 25,105 C 55,30 245,30 275,105 S 245,175 25,175 Z" fill="none" stroke="url(#neonPink)" stroke-width="1" filter="url(#neonGlow)"/>
  
  <!-- Power-up/boost pads on track -->
  <circle cx="150" cy="140" r="5" fill="url(#glowGradient)">
    <animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/>
  </circle>
  <circle cx="100" cy="110" r="3" fill="url(#glowGradient)">
    <animate attributeName="opacity" values="0.7;1;0.7" dur="1.5s" repeatCount="indefinite"/>
  </circle>
  <circle cx="200" cy="110" r="3" fill="url(#glowGradient)">
    <animate attributeName="opacity" values="0.3;0.8;0.3" dur="2.5s" repeatCount="indefinite"/>
  </circle>
  
  <!-- Start/Finish line -->
  <line x1="30" y1="140" x2="30" y2="160" stroke="#ffffff" stroke-width="4"/>
  <line x1="270" y1="140" x2="270" y2="160" stroke="#ffffff" stroke-width="4" stroke-dasharray="2,2"/>
  
  <!-- Distance markers -->
  <path d="M 90,175 L 90,165" stroke="#00ffff" stroke-width="1"/>
  <text x="90" y="182" font-family="Arial" font-size="6" fill="#00ffff" text-anchor="middle">25%</text>
  
  <path d="M 150,175 L 150,165" stroke="#00ffff" stroke-width="1"/>
  <text x="150" y="182" font-family="Arial" font-size="6" fill="#00ffff" text-anchor="middle">50%</text>
  
  <path d="M 210,175 L 210,165" stroke="#00ffff" stroke-width="1"/>
  <text x="210" y="182" font-family="Arial" font-size="6" fill="#00ffff" text-anchor="middle">75%</text>
  
  <!-- Digital timer/scoreboard -->
  <rect x="125" y="40" width="50" height="20" rx="3" ry="3" fill="#000033" stroke="url(#animatedGradient)" stroke-width="1" filter="url(#neonGlow)"/>
  <text x="150" y="52" font-family="Arial" font-size="10" fill="#00ffff" text-anchor="middle" filter="url(#neonGlow)">RACE ON</text>
  <text x="150" y="58" font-family="Arial" font-size="5" fill="#ffffff" text-anchor="middle">VELOCITY SHOWDOWN</text>
  
  <!-- Snail character -->
  <g transform="translate(60, 150) scale(0.7)">
    <!-- Shell -->
    <path d="M 0,0 C -5,-10 -15,-10 -20,-5 C -25,0 -25,10 -20,15 C -15,20 -5,20 0,15 C 5,10 5,0 0,-5 Z" fill="url(#snailShell)" stroke="#ff00ff" stroke-width="1" filter="url(#softGlow)"/>
    <path d="M -10,0 C -12,-5 -18,-5 -20,-2 C -22,1 -22,6 -20,8 C -18,10 -12,10 -10,8 C -8,6 -8,1 -10,-2 Z" fill="#000022" stroke="#ff00ff" stroke-width="0.5"/>
    
    <!-- Shell spiral pattern -->
    <path d="M -10,0 C -8,-3 -5,-5 -2,-4 C 0,-3 0,0 -2,2 C -5,4 -8,3 -10,0" fill="none" stroke="#ff99ff" stroke-width="0.5"/>
    
    <!-- Body -->
    <path d="M 0,0 Q 10,5 20,0 T 40,0" fill="#aa00aa" stroke="#ff00ff" stroke-width="1" filter="url(#softGlow)"/>
    
    <!-- Eyes on stalks -->
    <path d="M 35,0 C 35,-5 38,-10 40,-8" fill="none" stroke="#ff00ff" stroke-width="1"/>
    <path d="M 40,0 C 40,-8 43,-15 45,-12" fill="none" stroke="#ff00ff" stroke-width="1"/>
    <circle cx="40" cy="-8" r="1.5" fill="#ffffff"/>
    <circle cx="45" cy="-12" r="1.5" fill="#ffffff"/>
    <circle cx="40" cy="-8" r="0.8" fill="#000000"/>
    <circle cx="45" cy="-12" r="0.8" fill="#000000"/>
    
    <!-- Futuristic elements -->
    <rect x="5" y="-5" width="10" height="2" rx="1" ry="1" fill="#00ffff" filter="url(#neonGlow)">
      <animate attributeName="opacity" values="0.7;1;0.7" dur="1s" repeatCount="indefinite"/>
    </rect>
    <circle cx="-12" cy="0" r="3" fill="none" stroke="#00ffff" stroke-width="0.5" filter="url(#neonGlow)"/>
    <path d="M -5,5 L 15,5" stroke="#00ffff" stroke-width="0.5" stroke-dasharray="1,1" filter="url(#neonGlow)"/>
    
    <!-- Snail slime trail with tech aesthetic -->
    <path d="M -30,0 C -25,5 -15,-5 -10,0" fill="none" stroke="#00ffff" stroke-width="0.5" stroke-dasharray="1,1" opacity="0.7"/>
    <path d="M -40,0 C -35,5 -30,-5 -25,0" fill="none" stroke="#00ffff" stroke-width="0.5" stroke-dasharray="1,1" opacity="0.5"/>
    <path d="M -50,0 C -45,5 -40,-5 -35,0" fill="none" stroke="#00ffff" stroke-width="0.5" stroke-dasharray="1,1" opacity="0.3"/>
    
    <!-- Tech upgrades -->
    <circle cx="25" cy="0" r="2" fill="none" stroke="#ff00ff" stroke-width="0.5">
      <animate attributeName="r" values="1.5;2;1.5" dur="2s" repeatCount="indefinite"/>
    </circle>
    <path d="M 30,-2 L 32,-4 L 34,-2 L 32,0 Z" fill="#ff00ff" opacity="0.8"/>
  </g>
  
  <!-- Cheetah character -->
  <g transform="translate(200, 150) scale(0.8)">
    <!-- Body -->
    <path d="M -50,0 C -40,-10 -30,-5 -20,0 C -10,5 0,5 10,0 C 20,-5 30,-5 40,0" fill="url(#cheetahGradient)" stroke="#ff9900" stroke-width="1" filter="url(#cheetahFilter)"/>
    
    <!-- Head -->
    <path d="M 40,0 C 45,-5 55,-5 60,0 C 65,5 65,10 60,15 C 55,20 45,20 40,15 C 35,10 35,5 40,0 Z" fill="url(#cheetahGradient)" stroke="#ff9900" stroke-width="1" filter="url(#cheetahFilter)"/>
    
    <!-- Ears -->
    <path d="M 45,0 L 50,-8 L 55,0" fill="#ff9900" stroke="#ff6600" stroke-width="0.5"/>
    <path d="M 50,0 L 55,-8 L 60,0" fill="#ff9900" stroke="#ff6600" stroke-width="0.5"/>
    
    <!-- Legs in running motion -->
    <path d="M -40,0 L -45,15" stroke="#ff9900" stroke-width="2" stroke-linecap="round"/>
    <path d="M -30,0 L -25,15" stroke="#ff9900" stroke-width="2" stroke-linecap="round"/>
    <path d="M -10,0 L -15,15" stroke="#ff9900" stroke-width="2" stroke-linecap="round"/>
    <path d="M 0,0 L 5,15" stroke="#ff9900" stroke-width="2" stroke-linecap="round"/>
    
    <!-- Motion lines -->
    <path d="M -70,0 L -55,0" stroke="#ffcc00" stroke-width="0.5" opacity="0.7"/>
    <path d="M -70,5 L -55,5" stroke="#ffcc00" stroke-width="0.5" opacity="0.7"/>
    <path d="M -70,-5 L -55,-5" stroke="#ffcc00" stroke-width="0.5" opacity="0.7"/>
    
    <!-- Tail -->
    <path d="M -50,0 C -60,5 -65,-5 -70,-10" stroke="#ff9900" stroke-width="2" fill="none"/>
    
    <!-- Eyes -->
    <ellipse cx="55" cy="5" rx="2" ry="3" fill="#000000"/>
    <circle cx="54" cy="4" r="0.5" fill="#ffffff"/>
    
    <!-- Spots -->
    <circle cx="-40" cy="-2" r="2" fill="#000000"/>
    <circle cx="-25" cy="-4" r="1.5" fill="#000000"/>
    <circle cx="-10" cy="-3" r="2" fill="#000000"/>
    <circle cx="5" cy="-5" r="1.5" fill="#000000"/>
    <circle cx="20" cy="-2" r="2" fill="#000000"/>
    <circle cx="50" cy="10" r="1.5" fill="#000000"/>
    
    <!-- Futuristic elements -->
    <path d="M 40,15 L 45,15" stroke="#00ffff" stroke-width="1" filter="url(#neonGlow)"/>
    <circle cx="45" cy="15" r="2" fill="#00ffff" filter="url(#neonGlow)">
      <animate attributeName="opacity" values="0.7;1;0.7" dur="0.5s" repeatCount="indefinite"/>
    </circle>
    <path d="M -40,-5 L 30,-5" stroke="#ff00ff" stroke-width="0.5" stroke-dasharray="2,2" filter="url(#neonGlow)"/>
    
    <!-- Tech visor/goggles -->
    <path d="M 45,5 L 65,5" stroke="#00ffff" stroke-width="0.8" filter="url(#neonGlow)"/>
    <circle cx="55" cy="5" r="0.5" fill="#00ffff" filter="url(#neonGlow)">
      <animate attributeName="r" values="0.5;1;0.5" dur="1s" repeatCount="indefinite"/>
    </circle>
  </g>
  
  <!-- Crowd silhouettes -->
  <g transform="translate(0, 80)">
    <path d="M 10,0 Q 15,-5 20,0 Q 25,-10 30,0 Q 35,-7 40,0 Q 45,-12 50,0 Q 55,-8 60,0" fill="none" stroke="#00ffff" stroke-width="0.5" opacity="0.5"/>
    <path d="M 240,0 Q 245,-5 250,0 Q 255,-10 260,0 Q 265,-7 270,0 Q 275,-12 280,0 Q 285,-8 290,0" fill="none" stroke="#ff00ff" stroke-width="0.5" opacity="0.5"/>
  </g>
  <g transform="translate(0, 200)">
    <path d="M 10,0 Q 15,5 20,0 Q 25,10 30,0 Q 35,7 40,0 Q 45,12 50,0 Q 55,8 60,0" fill="none" stroke="#00ffff" stroke-width="0.5" opacity="0.5"/>
    <path d="M 240,0 Q 245,5 250,0 Q 255,10 260,0 Q 265,7 270,0 Q 275,12 280,0 Q 285,8 290,0" fill="none" stroke="#ff00ff" stroke-width="0.5" opacity="0.5"/>
  </g>
  
  <!-- Floating holograms and lights -->
  <circle cx="50" cy="50" r="3" fill="#00ffff" filter="url(#neonGlow)" opacity="0.7">
    <animate attributeName="r" values="2;3;2" dur="4s" repeatCount="indefinite"/>
  </circle>
  <circle cx="250" cy="50" r="3" fill="#ff00ff" filter="url(#neonGlow)" opacity="0.7">
    <animate attributeName="r" values="3;2;3" dur="4s" repeatCount="indefinite"/>
  </circle>
  <circle cx="50" cy="230" r="3" fill="#ff00ff" filter="url(#neonGlow)" opacity="0.7">
    <animate attributeName="r" values="2;3;2" dur="3s" repeatCount="indefinite"/>
  </circle>
  <circle cx="250" cy="230" r="3" fill="#00ffff" filter="url(#neonGlow)" opacity="0.7">
    <animate attributeName="r" values="3;2;3" dur="3s" repeatCount="indefinite"/>
  </circle>
  
  <!-- Floating UI elements -->
  <g transform="translate(20, 70)">
    <rect x="0" y="0" width="25" height="15" rx="2" ry="2" fill="#000033" fill-opacity="0.7" stroke="#00ffff" stroke-width="0.5"/>
    <text x="12.5" y="7" font-family="Arial" font-size="5" fill="#00ffff" text-anchor="middle">SNAIL</text>
    <text x="12.5" y="12" font-family="Arial" font-size="4" fill="#ffffff" text-anchor="middle">0.1 KM/H</text>
  </g>
  
  <g transform="translate(255, 70)">
    <rect x="0" y="0" width="25" height="15" rx="2" ry="2" fill="#000033" fill-opacity="0.7" stroke="#ff00ff" stroke-width="0.5"/>
    <text x="12.5" y="7" font-family="Arial" font-size="5" fill="#ff00ff" text-anchor="middle">CHEETAH</text>
    <text x="12.5" y="12" font-family="Arial" font-size="4" fill="#ffffff" text-anchor="middle">120 KM/H</text>
  </g>
  
  <!-- Floating text elements -->
  <text x="150" y="80" font-family="Arial" font-size="5" fill="#00ffff" filter="url(#neonGlow)" text-anchor="middle">SPEED STATS</text>
  <text x="150" y="240" font-family="Arial" font-size="5" fill="#ff00ff" filter="url(#neonGlow)" text-anchor="middle">QUANTUM RACING LEAGUE</text>
  
  <!-- Additional neon details -->
  <path d="M 20,100 L 10,90 L 10,80" fill="none" stroke="#00ffff" stroke-width="1" filter="url(#neonGlow)"/>
  <path d="M 20,180 L 10,190 L 10,200" fill="none" stroke="#ff00ff" stroke-width="1" filter="url(#neonGlow)"/>
  <path d="M 280,100 L 290,90 L 290,80" fill="none" stroke="#ff00ff" stroke-width="1" filter="url(#neonGlow)"/>
  <path d="M 280,180 L 290,190 L 290,200" fill="none" stroke="#00ffff" stroke-width="1" filter="url(#neonGlow)"/>
  
  <!-- Track camera drones -->
  <g transform="translate(100, 90)">
    <circle cx="0" cy="0" r="2" fill="#333333" stroke="#666666" stroke-width="0.5"/>
    <path d="M -3,0 L 3,0" stroke="#666666" stroke-width="0.5"/>
    <path d="M 0,-3 L 0,3" stroke="#666666" stroke-width="0.5"/>
    <circle cx="0" cy="0" r="1" fill="#00ffff" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.3;0.7" dur="2s" repeatCount="indefinite"/>
    </circle>
  </g>
  
  <g transform="translate(200, 90)">
    <circle cx="0" cy="0" r="2" fill="#333333" stroke="#666666" stroke-width="0.5"/>
    <path d="M -3,0 L 3,0" stroke="#666666" stroke-width="0.5"/>
    <path d="M 0,-3 L 0,3" stroke="#666666" stroke-width="0.5"/>
    <circle cx="0" cy="0" r="1" fill="#ff00ff" opacity="0.7">
      <animate attributeName="opacity" values="0.3;0.7;0.3" dur="2s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission is more visually detailed and adheres more closely to the prompt, featuring a well-defined futuristic neon-lit track and clear racing elements.

    The inclusion of extra design elements like labeled sections and a dynamic race layout adds to the creativity and technical quality compared to Player 1's simpler composition.

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
35
Player 2
99
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
12
Player 2
42
Ellipses

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

Player 1
5
Player 2
1
Lines

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

Player 1
10
Player 2
2
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
5
Player 2
47
Groups

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

Player 1
4
Player 2
9

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
7
Patterns

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

Player 1
Player 2
1
Filters

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

Player 1
1
Player 2
3
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
5
Player 2
18
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
55

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
15

Interactivity Metrics

Animations

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

Player 1
Player 2
15
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
6
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
17
Player 2
143
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
5
Player 2
11
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
11

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