Back

SVG Drawing Match #2798

May 26, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An ice cream cone melting on a hot sidewalk under a glaring sun."

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="#F7DC6F" />
  <circle cx="250" cy="50" r="20" fill="#FFD700" />
  <circle cx="250" cy="50" r="10" fill="#FFFFFF" />
  <!-- Sun Rays -->
  <line x1="250" y1="50" x2="280" y2="20" stroke="#FFD700" stroke-width="2" />
  <line x1="250" y1="50" x2="220" y2="20" stroke="#FFD700" stroke-width="2" />
  <line x1="250" y1="50" x2="250" y2="20" stroke="#FFD700" stroke-width="2" />
  <!-- Sidewalk -->
  <rect x="0" y="200" width="300" height="100" fill="#999999" rx="10" />
  <!-- Ice Cream Cone -->
  <path d="M 150 200 L 150 250 L 180 250 L 180 200 Z" fill="#F5F5F5" />
  <path d="M 150 220 L 150 250 L 170 250 L 170 220 Z" fill="#FFFFFF" />
  <!-- Melting Ice Cream -->
  <path d="M 170 220 C 170 230 180 230 180 240 C 180 250 190 250 190 240 C 190 230 200 230 200 220 L 170 220 Z" fill="#FFC5C5" />
  <path d="M 190 240 C 190 250 200 250 200 240 C 200 230 210 230 210 240 L 190 240 Z" fill="#FFC5C5" />
  <path d="M 210 240 C 210 250 220 250 220 240 C 220 230 230 230 230 240 L 210 240 Z" fill="#FFC5C5" />
  <!-- Puddles -->
  <circle cx="190" cy="260" r="10" fill="#AAAAFF" />
  <circle cx="220" cy="260" r="10" fill="#AAAAFF" />
  <circle cx="250" cy="260" r="10" fill="#AAAAFF" />
  <!-- Shadows -->
  <rect x="145" y="205" width="30" height="10" fill="#999999" rx="5" />
  <rect x="165" y="215" width="20" height="10" fill="#999999" rx="5" />
  <rect x="185" y="225" width="20" height="10" fill="#999999" rx="5" />
</svg>
SVG by Claude Sonnet 4 Thinking (2025-05-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Sky gradient with heat effect -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB" />
      <stop offset="30%" style="stop-color:#FFE4B5" />
      <stop offset="70%" style="stop-color:#FFA500" />
      <stop offset="100%" style="stop-color:#FF6347" />
    </linearGradient>
    
    <!-- Intense sun gradient -->
    <radialGradient id="sunGradient" cx="50%" cy="50%" r="80%">
      <stop offset="0%" style="stop-color:#FFFFFF" />
      <stop offset="20%" style="stop-color:#FFFF00" />
      <stop offset="60%" style="stop-color:#FF6347" />
      <stop offset="100%" style="stop-color:#FF4500" />
    </radialGradient>
    
    <!-- Sun glow -->
    <radialGradient id="sunGlow" cx="50%" cy="50%" r="100%">
      <stop offset="0%" style="stop-color:#FFFF00;stop-opacity:0.3" />
      <stop offset="100%" style="stop-color:#FF4500;stop-opacity:0" />
    </radialGradient>
    
    <!-- Sidewalk texture -->
    <pattern id="sidewalkTexture" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#C0C0C0" />
      <circle cx="5" cy="5" r="1" fill="#A0A0A0" />
      <circle cx="15" cy="10" r="0.5" fill="#808080" />
      <circle cx="10" cy="15" r="0.8" fill="#A0A0A0" />
    </pattern>
    
    <!-- Ice cream gradients -->
    <radialGradient id="strawberryScoop" cx="40%" cy="30%" r="60%">
      <stop offset="0%" style="stop-color:#FFE4E1" />
      <stop offset="50%" style="stop-color:#FFB6C1" />
      <stop offset="100%" style="stop-color:#FF1493" />
    </radialGradient>
    
    <radialGradient id="vanillaScoop" cx="40%" cy="30%" r="60%">
      <stop offset="0%" style="stop-color:#FFFFFF" />
      <stop offset="50%" style="stop-color:#FFFACD" />
      <stop offset="100%" style="stop-color:#F5DEB3" />
    </radialGradient>
    
    <!-- Cone gradient -->
    <linearGradient id="coneGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#DEB887" />
      <stop offset="50%" style="stop-color:#CD853F" />
      <stop offset="100%" style="stop-color:#8B4513" />
    </linearGradient>
    
    <!-- Melting gradients -->
    <linearGradient id="meltingStrawberry" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFB6C1" />
      <stop offset="100%" style="stop-color:#FF69B4;stop-opacity:0.6" />
    </linearGradient>
    
    <linearGradient id="meltingVanilla" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFFACD" />
      <stop offset="100%" style="stop-color:#F5DEB3;stop-opacity:0.5" />
    </linearGradient>
  </defs>
  
  <!-- Sky background -->
  <rect width="300" height="200" fill="url(#skyGradient)" />
  
  <!-- Sidewalk -->
  <rect x="0" y="200" width="300" height="100" fill="url(#sidewalkTexture)" />
  <rect x="0" y="200" width="300" height="100" fill="url(#skyGradient)" opacity="0.1" />
  
  <!-- Sun glow effect -->
  <circle cx="240" cy="60" r="50" fill="url(#sunGlow)" />
  
  <!-- Sun -->
  <circle cx="240" cy="60" r="25" fill="url(#sunGradient)" />
  
  <!-- Sun rays (animated-looking) -->
  <g stroke="#FFFF00" stroke-width="2" opacity="0.8">
    <line x1="215" y1="35" x2="205" y2="25" stroke-width="3" />
    <line x1="230" y1="25" x2="230" y2="15" stroke-width="2" />
    <line x1="250" y1="25" x2="250" y2="15" stroke-width="2" />
    <line x1="265" y1="35" x2="275" y2="25" stroke-width="3" />
    <line x1="275" y1="50" x2="285" y2="50" stroke-width="2" />
    <line x1="275" y1="70" x2="285" y2="70" stroke-width="2" />
    <line x1="265" y1="85" x2="275" y2="95" stroke-width="3" />
    <line x1="215" y1="85" x2="205" y2="95" stroke-width="3" />
    <line x1="205" y1="70" x2="195" y2="70" stroke-width="2" />
    <line x1="205" y1="50" x2="195" y2="50" stroke-width="2" />
  </g>
  
  <!-- Heat distortion waves -->
  <g stroke="#FF6347" stroke-width="1.5" fill="none" opacity="0.5">
    <path d="M20 220 Q25 215 30 220 Q35 225 40 220 Q45 215 50 220 Q55 225 60 220">
      <animateTransform attributeName="transform" type="translate" values="0 0; 0 -2; 0 0" dur="2s" repeatCount="indefinite" />
    </path>
    <path d="M80 240 Q85 235 90 240 Q95 245 100 240 Q105 235 110 240 Q115 245 120 240" />
    <path d="M160 260 Q165 255 170 260 Q175 265 180 260 Q185 255 190 260 Q195 265 200 260" />
    <path d="M220 250 Q225 245 230 250 Q235 255 240 250 Q245 245 250 250 Q255 255 260 250" />
    <path d="M40 270 Q45 265 50 270 Q55 275 60 270 Q65 265 70 270 Q75 275 80 270" />
  </g>
  
  <!-- Ice cream cone -->
  <polygon points="130,200 150,200 140,260" fill="url(#coneGradient)" stroke="#8B4513" stroke-width="1" />
  
  <!-- Waffle pattern -->
  <g stroke="#8B4513" stroke-width="1.5" opacity="0.7">
    <line x1="132" y1="210" x2="148" y2="210" />
    <line x1="134" y1="220" x2="146" y2="220" />
    <line x1="136" y1="230" x2="144" y2="230" />
    <line x1="138" y1="240" x2="142" y2="240" />
    <line x1="135" y1="205" x2="135" y2="255" />
    <line x1="140" y1="200" x2="140" y2="260" />
    <line x1="145" y1="205" x2="145" y2="255" />
  </g>
  
  <!-- Original ice cream scoops (partially melted) -->
  <ellipse cx="140" cy="185" rx="16" ry="13" fill="url(#vanillaScoop)" transform="rotate(-5 140 185)" />
  <ellipse cx="140" cy="168" rx="14" ry="11" fill="url(#strawberryScoop)" transform="rotate(8 140 168)" />
  
  <!-- Dramatic melting streams -->
  <path d="M125 190 Q115 210 105 235 Q95 250 85 270 Q75 285 65 295 Q55 300 45 295" 
        fill="none" stroke="url(#meltingVanilla)" stroke-width="12" stroke-linecap="round" />
  
  <path d="M155 188 Q165 208 175 230 Q185 248 195 268 Q205 285 215 295 Q225 300 235 295" 
        fill="none" stroke="url(#meltingStrawberry)" stroke-width="10" stroke-linecap="round" />
  
  <path d="M140 195 Q135 218 125 245 Q115 265 105 285 Q95 295 85 300" 
        fill="none" stroke="url(#meltingVanilla)" stroke-width="8" stroke-linecap="round" />
  
  <path d="M145 180 Q155 200 165 225 Q175 245 185 265 Q195 280 205 290" 
        fill="none" stroke="url(#meltingStrawberry)" stroke-width="6" stroke-linecap="round" />
  
  <!-- Melted puddles with realistic spreading -->
  <ellipse cx="65" cy="295" rx="25" ry="8" fill="url(#meltingVanilla)" opacity="0.8" />
  <ellipse cx="235" cy="295" rx="22" ry="7" fill="url(#meltingStrawberry)" opacity="0.7" />
  <ellipse cx="85" cy="290" rx="18" ry="6" fill="url(#meltingVanilla)" opacity="0.6" />
  <ellipse cx="205" cy="290" rx="20" ry="6" fill="url(#meltingStrawberry)" opacity="0.6" />
  <ellipse cx="120" cy="285" rx="15" ry="5" fill="url(#meltingVanilla)" opacity="0.5" />
  
  <!-- Dripping details -->
  <circle cx="130" cy="210" r="4" fill="url(#strawberryScoop)" opacity="0.9" />
  <circle cx="145" cy="205" r="3" fill="url(#vanillaScoop)" opacity="0.8" />
  <circle cx="125" cy="215" r="2" fill="url(#strawberryScoop)" opacity="0.7" />
  
  <!-- Shadow and reflection -->
  <ellipse cx="140" cy="265" rx="12" ry="4" fill="#696969" opacity="0.4" />
  
  <!-- Heat shimmer effect -->
  <rect x="0" y="200" width="300" height="100" fill="url(#sunGlow)" opacity="0.1" />
  
  <!-- Small sparkles from sun reflection -->
  <g fill="#FFFFFF" opacity="0.8">
    <circle cx="75" cy="275" r="1" />
    <circle cx="190" cy="280" r="1.5" />
    <circle cx="145" cy="170" r="1" />
    <circle cx="135" cy="185" r="0.8" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude Sonnet 4 Thinking (2025-05-14) Player 2

Judge's Analysis

    Player 2's submission is more visually appealing and detailed, with a realistic depiction of a melting ice cream cone on a hot sidewalk under a glaring sun.

    The gradient background and flowing melted ice cream add depth and creativity.

    Player 1's submission, while conceptually aligned, is minimalistic and lacks the same level of detail and visual storytelling.

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
18
Player 2
52
Rectangles

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

Player 1
4
Player 2
5
Circles

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

Player 1
6
Player 2
12
Ellipses

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

Player 1
Player 2
8
Lines

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

Player 1
3
Player 2
17
Polygons

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

Player 1
Player 2
1
Paths

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

Player 1
5
Player 2
9
Groups

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

Player 1
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
8

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
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
26
Player 2
43
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
Player 2
9
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.