blob: 04d095bd8927f216e9dd3891ba389a58d0eb180b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg viewBox="0 0 11 11" xmlns="http://www.w3.org/2000/svg" version="1.1">
<title>FDP Callout #4</title>
<desc>The "4" Callout.</desc>
<defs>
<filter id="MyFilter" filterUnits="userSpaceOnUse" x="0" y="0" width="11" height="11">
<feGaussianBlur in="SourceAlpha" stdDeviation="4" result="blur"/>
<feOffset dx="2" dy="2" height="7" in="blur" result="offsetBlur" width="7"/>
<feSpecularLighting in="blur" surfaceScale="1.3" specularConstant=".95"
specularExponent="20" lighting-color="rgb( 180, 180, 180 )"
result="specOut">
<fePointLight x="-5000" y="-10000" z="40000"/>
</feSpecularLighting>
<feComposite in="specOut" in2="SourceAlpha" operator="in" result="specOut"/>
<feComposite in="SourceGraphic" in2="specOut" operator="arithmetic"
k1="0" k2="1" k3="1" k4="0" result="litPaint"/>
<feMerge>
<feMergeNode in="offsetBlur"/>
<feMergeNode in="litPaint"/>
</feMerge>
</filter>
</defs>
<g filter="url( #MyFilter )">
<circle r="5" cx="5.5" cy="5.5" fill="rgb( 150, 50, 10 )" fill-opacity="0.8" stroke="rgb( 10, 10, 100 )" stroke-width="0.25"></circle>
<text fill="rgb( 255, 255, 10 )" fill-opacity="0.95" font-family="monospace sans" font-size="7" text-anchor="middle" x="5.25" y="7.9" stroke="none">4</text>
</g>
</svg>
|