Creative Challenge
"An origami dragon made of neon lights"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Neon light gradient -->
<linearGradient id="neon" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FF69B4" stop-opacity="0.5"/>
<stop offset="50%" stop-color="#FC3F7C" stop-opacity="1"/>
<stop offset="100%" stop-color="#FF99CC" stop-opacity="0.5"/>
</linearGradient>
<!-- Origami dragon body -->
<g transform="translate(150, 120)">
<path d="M 0,-50 40,-90 80,-50 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
<path d="M 0,-50 -40,-90 -80,-50 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
</g>
<!-- Origami dragon head -->
<g transform="translate(150, 60)">
<path d="M 0,-40 20,-60 40,-40 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
<path d="M 0,-40 -20,-60 -40,-40 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
<ellipse cx="0" cy="-20" rx="10" ry="10" fill="#FF99CC" stroke="url(#neon)" stroke-width="3"/>
</g>
<!-- Origami dragon wings -->
<g transform="translate(120, 180) rotate(-30)">
<path d="M 0,0 40,-40 80,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
<path d="M 0,0 -40,-40 -80,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
</g>
<g transform="translate(180, 180) rotate(30)">
<path d="M 0,0 40,-40 80,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
<path d="M 0,0 -40,-40 -80,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="5"/>
</g>
<!-- Origami dragon claws -->
<g transform="translate(120, 240)">
<path d="M 0,0 10,-20 20,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="3"/>
<path d="M 0,0 -10,-20 -20,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="3"/>
</g>
<g transform="translate(180, 240)">
<path d="M 0,0 10,-20 20,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="3"/>
<path d="M 0,0 -10,-20 -20,0 Z" fill="url(#neon)" stroke="url(#neon)" stroke-width="3"/>
</g>
<!-- Neon light glow -->
<filter id="glow">
<feGaussianBlur stdDeviation="10"/>
</filter>
<rect x="0" y="0" width="300" height="300" fill="url(#neon)" filter="url(#glow)" opacity="0.5"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="gradient2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,255,0);stop-opacity:1" />
</linearGradient>
</defs>
<path d="M150,20 C250,20 250,100 250,150 L200,150 L200,100 C170,100 170,150 200,150 L200,200 L150,250 L100,200 L100,150 C70,150 70,100 100,100 L100,150 L50,150 C50,100 50,20 150,20 Z" fill="url(#gradient1)" />
<path d="M200,150 L250,150 C250,100 200,100 200,150 Z" fill="url(#gradient2)" />
<path d="M100,150 L50,150 C50,100 100,100 100,150 Z" fill="url(#gradient2)" />
<path d="M150,250 C120,250 120,200 150,200 C180,200 180,250 150,250 Z" fill="url(#gradient2)" />
<path d="M150,20 L150,150 C120,150 120,100 150,100 C180,100 180,150 150,150 Z" fill="url(#gradient2)" />
<path d="M150,20 C120,20 120,50 150,50 C180,50 180,20 150,20 Z" fill="url(#gradient2)" />
<circle cx="150" cy="150" r="10" fill="url(#gradient1)" />
</svg>
Judge's Analysis
Player 1's submission better adheres to the prompt with its use of triangular shapes, reminiscent of origami, and a neon pink color that suggests neon lights.
The composition effectively evokes the idea of an origami dragon.
In contrast, Player 2's image, while colorful and visually appealing, lacks the origami and dragon elements, making it less aligned with 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
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
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
"Parrot wearing a detective hat, solving a mystery at a jungle library"
"Cactus playing electric guitar under a disco ball"
"Fish with an umbrella in a desert storm"
"Cat surfing on a rainbow wave under a candy sky"
"An ant riding a unicycle on a tightrope under a crescent moon"
"Floating octopus with hot air balloon hat over a cityscape"