Back

SVG Drawing Match #1705

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal snail skyscraper with windows and tiny elevator doors"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background Sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1a001a" />
      <stop offset="100%" stop-color="#660066" />
    </linearGradient>
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff9900" />
      <stop offset="50%" stop-color="#ff6600" />
      <stop offset="100%" stop-color="#cc3300" />
    </linearGradient>
    <linearGradient id="bodyGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#99cc00" />
      <stop offset="100%" stop-color="#66aa00" />
    </linearGradient>
    <pattern id="windows" patternUnits="userSpaceOnUse" width="30" height="20" patternTransform="rotate(0)">
      <rect width="12" height="8" x="2" y="2" fill="#ffff99" stroke="#333333" stroke-width="1" />
      <rect width="12" height="8" x="16" y="2" fill="#ffff99" stroke="#333333" stroke-width="1" />
      <rect width="12" height="8" x="2" y="12" fill="#ffff99" stroke="#333333" stroke-width="1" />
      <rect width="12" height="8" x="16" y="12" fill="#ffff99" stroke="#333333" stroke-width="1" />
    </pattern>
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="4" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
  </defs>

  <!-- Sky Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />

  <!-- Stars -->
  <g>
    <circle cx="30" cy="40" r="1" fill="white" />
    <circle cx="60" cy="20" r="1.5" fill="white" />
    <circle cx="100" cy="50" r="1" fill="white" />
    <circle cx="150" cy="30" r="2" fill="white" />
    <circle cx="200" cy="15" r="1" fill="white" />
    <circle cx="250" cy="45" r="1.5" fill="white" />
    <circle cx="280" cy="25" r="1" fill="white" />
    <circle cx="45" cy="70" r="1" fill="white" />
    <circle cx="75" cy="35" r="1.5" fill="white" />
    <circle cx="125" cy="25" r="1" fill="white" />
    <circle cx="175" cy="55" r="2" fill="white" />
    <circle cx="225" cy="30" r="1" fill="white" />
    <circle cx="265" cy="60" r="1.5" fill="white" />
  </g>

  <!-- Ground -->
  <rect x="0" y="270" width="300" height="30" fill="#336633" />

  <!-- Snail Shell Building -->
  <g transform="translate(150, 280) scale(0.9)">
    <!-- Base of building -->
    <ellipse cx="0" cy="0" rx="80" ry="20" fill="#555555" />
    
    <!-- Spiral Shell (Main Building) -->
    <path d="M -10,0 
             C -10,-20 20,-50 60,-40
             C 100,-30 110,0 90,20
             C 70,40 20,40 0,20
             C -20,0 -10,-30 10,-20
             C 30,-10 40,5 30,15
             C 20,25 0,25 -5,15
             C -10,5 0,-5 5,0
             Z" 
          fill="url(#shellGradient)" />
    
    <!-- Windows -->
    <path d="M -10,0 
             C -10,-20 20,-50 60,-40
             C 100,-30 110,0 90,20
             C 70,40 20,40 0,20
             C -20,0 -10,-30 10,-20
             C 30,-10 40,5 30,15
             C 20,25 0,25 -5,15
             C -10,5 0,-5 5,0
             Z" 
          fill="url(#windows)" fill-opacity="0.7" />
    
    <!-- Snail Body/Building Base -->
    <path d="M -10,0 
             Q -20,10 -40,5
             Q -70,-5 -90,-5
             Q -110,-5 -120,10
             L -120,0
             Q -110,-15 -90,-15
             Q -70,-15 -40,-5
             Q -20,0 -10,0
             Z" 
          fill="url(#bodyGradient)" />
          
    <!-- Snail Head -->
    <g transform="translate(-120, 0)">
      <ellipse cx="0" cy="-5" rx="10" ry="8" fill="#99cc00" />
      <circle cx="-5" cy="-8" r="3" fill="white" />
      <circle cx="-5" cy="-8" r="1.5" fill="black" />
      <circle cx="5" cy="-8" r="3" fill="white" />
      <circle cx="5" cy="-8" r="1.5" fill="black" />
      <!-- Antennas -->
      <path d="M -3,-12 Q -8,-20 -10,-25" stroke="#99cc00" stroke-width="1.5" fill="none" />
      <path d="M 3,-12 Q 8,-20 10,-25" stroke="#99cc00" stroke-width="1.5" fill="none" />
      <circle cx="-10" cy="-25" r="2" fill="#ff9900" />
      <circle cx="10" cy="-25" r="2" fill="#ff9900" />
    </g>
    
    <!-- Elevator Doors -->
    <g>
      <!-- Main entrance elevator -->
      <rect x="-15" y="-5" width="10" height="15" fill="#555555" stroke="#333333" stroke-width="1" />
      <rect x="-14" y="-4" width="4" height="13" fill="#888888" />
      <rect x="-10" y="-4" width="4" height="13" fill="#666666" />
      
      <!-- Second level elevator -->
      <rect x="25" y="-20" width="8" height="12" fill="#555555" stroke="#333333" stroke-width="1" />
      <rect x="26" y="-19" width="3" height="10" fill="#888888" />
      <rect x="29" y="-19" width="3" height="10" fill="#666666" />
      
      <!-- Top level elevator -->
      <rect x="5" y="-10" width="6" height="9" fill="#555555" stroke="#333333" stroke-width="1" />
      <rect x="5.5" y="-9.5" width="2.5" height="8" fill="#888888" />
      <rect x="8" y="-9.5" width="2.5" height="8" fill="#666666" />
    </g>
    
    <!-- Rooftop features -->
    <g transform="translate(40, -30)">
      <circle cx="0" cy="0" r="8" fill="#ff3366" filter="url(#glow)" />
      <rect x="-1" y="-15" width="2" height="15" fill="#888888" />
    </g>
    
    <!-- Tiny people -->
    <circle cx="-40" cy="0" r="2" fill="#3366cc" />
    <circle cx="-50" cy="0" r="2" fill="#cc3366" />
    <circle cx="-30" cy="0" r="2" fill="#ffcc00" />
  </g>
  
  <!-- Clouds -->
  <g opacity="0.7">
    <ellipse cx="60" cy="80" rx="30" ry="15" fill="#9933cc" opacity="0.5" />
    <ellipse cx="230" cy="100" rx="40" ry="20" fill="#9933cc" opacity="0.5" />
    <ellipse cx="150" cy="50" rx="50" ry="15" fill="#9933cc" opacity="0.3" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff00ff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00ffff;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="windowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#e0e0e0;stop-opacity:0.8" />
    </linearGradient>
  </defs>

  <!-- Snail shell-skyscraper -->
  <path d="M150,240 C200,240 240,180 240,120 L240,80 C240,40 200,20 150,20 C100,20 60,40 60,80 L60,120 C60,180 40,220 150,220 C160,220 170,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100 C210,100 220,120 220,140 L220,180 C220,200 210,220 200,220 C190,220 180,200 180,180 L180,140 C180,120 190,100 200,100" fill="url(#shellGradient)" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
  
  <!-- Windows -->
  <rect x="60" y="60" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="100" y="60" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="140" y="60" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="180" y="60" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="220" y="60" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  
  <rect x="60" y="100" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="100" y="100" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="140" y="100" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="180" y="100" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="220" y="100" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  
  <rect x="60" y="140" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="100" y="140" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="140" y="140" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="180" y="140" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  <rect x="220" y="140" width="20" height="20" fill="url(#windowGradient)" stroke="#666" stroke-width="1" rx="2" />
  
  <!-- Elevator doors -->
  <rect x="185" y="170" width="10" height="30" fill="#444" stroke="#666" stroke-width="1" rx="2" />
  <rect x="205" y="170" width="10" height="30" fill="#444" stroke="#666" stroke-width="1" rx="2" />
  
  <!-- Snail head and antennae -->
  <circle cx="180" cy="30" r="20" fill="#ff00ff" stroke="#333" stroke-width="2" />
  <circle cx="160" cy="20" r="5" fill="#ff00ff" />
  <circle cx="200" cy="20" r="5" fill="#ff00ff" />
  
  <!-- Clouds -->
  <path d="M50,50 Q60,40 70,50 Q80,60 70,70 Q60,80 50,70 Q40,60 50,50" fill="#fff" stroke="#999" stroke-width="1" />
  <path d="M250,30 Q260,20 270,30 Q280,40 270,50 Q260,60 250,50 Q240,40 250,30" fill="#fff" stroke="#999" stroke-width="1" />
  
  <!-- Sun -->
  <circle cx="280" cy="40" r="20" fill="#ffd700" stroke="#ff8f00" stroke-width="2" />
  <path d="M280,40 L300,60 M280,40 L320,40 M280,40 L300,20 M280,40 L260,40 M280,40 L300,30 M280,40 L300,50" stroke="#ff8f00" stroke-width="2" />
  
  <!-- Ground -->
  <path d="M0,300 Q150,250 300,300" fill="#4CAF50" stroke="#2E7D32" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission showcases creativity with the use of vibrant colors and a clear snail shell integration into the skyscraper design, which adheres more closely to the surreal aspect of the prompt.

    The incorporation of multiple windows and the tiny elevator doors enhances the technical quality and visual appeal.

    Player 1's image, while imaginative, lacks the same level of surrealism and detail in integrating the snail and skyscraper elements.

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
49
Player 2
26
Rectangles

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

Player 1
16
Player 2
17
Circles

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

Player 1
23
Player 2
4
Ellipses

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

Player 1
5
Player 2
Lines

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

Player 1
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
5
Player 2
5
Groups

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

Player 1
6
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
24

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
20
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
3
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
31
Player 2
160
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
2
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