r1841 - in trunk: data/gfx misc

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Aug 22 07:22:09 EDT 2006


Author: div0
Date: 2006-08-22 07:22:09 -0400 (Tue, 22 Aug 2006)
New Revision: 1841

Added:
   trunk/misc/fiximage.pl
   trunk/misc/sb-flag-carrying.svg
   trunk/misc/sb-flag-dropped.svg
   trunk/misc/sb-flag-taken.svg
Modified:
   trunk/data/gfx/sb_flag_blue_carrying.tga
   trunk/data/gfx/sb_flag_blue_lost.tga
   trunk/data/gfx/sb_flag_blue_taken.tga
   trunk/data/gfx/sb_flag_red_carrying.tga
   trunk/data/gfx/sb_flag_red_lost.tga
   trunk/data/gfx/sb_flag_red_taken.tga
Log:
replaced flag icons by "running marine" icons; added icon SVG source and a sprite fixup script


Modified: trunk/data/gfx/sb_flag_blue_carrying.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/sb_flag_blue_lost.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/sb_flag_blue_taken.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/sb_flag_red_carrying.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/sb_flag_red_lost.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/sb_flag_red_taken.tga
===================================================================
(Binary files differ)

Added: trunk/misc/fiximage.pl
===================================================================
--- trunk/misc/fiximage.pl	2006-08-22 03:54:52 UTC (rev 1840)
+++ trunk/misc/fiximage.pl	2006-08-22 11:22:09 UTC (rev 1841)
@@ -0,0 +1,105 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+# Usage:
+#   convert image.tga -depth 8 RGBA:- | perl fiximage.pl 72 | convert -depth 8 -size 72x56 RGBA:- output.tga
+
+my ($width) = @ARGV;
+
+my @pixels = ();
+
+for(;;)
+{
+	read STDIN, my $data, 4
+		or last;
+	my ($r, $g, $b, $a) = unpack "CCCC", $data;
+	push @pixels, [$r, $g, $b, $a];
+}
+
+my $height = @pixels / $width;
+my @fixlater;
+for my $y(0..($height-1))
+{
+	for my $x(0..($width-1))
+	{
+		next
+			if $pixels[$x + $y * $width][3] != 0;
+		# alpha is zero? Replace by weighted average.
+		my ($r, $g, $b, $a) = (0, 0, 0);
+		for my $dy(-1..1)
+		{
+			next if $y + $dy < 0;
+			next if $y + $dy >= $height;
+			for my $dx(-1..1)
+			{
+				next if $x + $dx < 0;
+				next if $x + $dx >= $width;
+				my $pix = $pixels[($x + $dx) + ($y + $dy) * $width];
+				$r += $pix->[0] * $pix->[3];
+				$g += $pix->[1] * $pix->[3];
+				$b += $pix->[2] * $pix->[3];
+				$a += $pix->[3];
+			}
+		}
+		if($a == 0)
+		{
+			push @fixlater, [$x, $y];
+			$pixels[$x + $y * $width] = [0, 0, 0, 0, undef];
+			next;
+		}
+		$r = int ($r / $a);
+		$g = int ($g / $a);
+		$b = int ($b / $a);
+		print STDERR "Fixing ($x, $y -> $r, $g, $b, $a)\n";
+		$pixels[$x + $y * $width] = [$r, $g, $b, 0];
+	}
+}
+
+while(@fixlater)
+{
+	print STDERR "Pixels left: ", scalar(@fixlater), "\n";
+
+	# These pixels have no neighbors with a non-zero alpha.
+	my @fixels = @fixlater;
+	@fixlater = ();
+	my @pixelsorig = @pixels;
+	for(@fixels)
+	{
+		my ($x, $y) = @$_;
+		my ($r, $g, $b, $a) = (0, 0, 0, 0);
+		for my $dy(-1..1)
+		{
+			next if $y + $dy < 0;
+			next if $y + $dy >= $height;
+			for my $dx(-1..1)
+			{
+				next if $x + $dx < 0;
+				next if $x + $dx >= $width;
+				my $pix = $pixelsorig[($x + $dx) + ($y + $dy) * $width];
+				next
+					if @$pix == 5;
+				$r += $pix->[0];
+				$g += $pix->[1];
+				$b += $pix->[2];
+				$a += 1;
+			}
+		}
+		if($a == 0)
+		{
+			push @fixlater, [$x, $y];
+			next;
+		}
+		$r = int ($r / $a);
+		$g = int ($g / $a);
+		$b = int ($b / $a);
+		#print STDERR "Fixing later ($x, $y -> $r, $g, $b, $a)\n";
+		$pixels[$x + $y * $width] = [$r, $g, $b, 0];
+	}
+}
+
+for(@pixels)
+{
+	print pack "CCCC", @$_;
+}

Added: trunk/misc/sb-flag-carrying.svg
===================================================================
--- trunk/misc/sb-flag-carrying.svg	2006-08-22 03:54:52 UTC (rev 1840)
+++ trunk/misc/sb-flag-carrying.svg	2006-08-22 11:22:09 UTC (rev 1841)
@@ -0,0 +1,220 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   width="503"
+   height="470"
+   version="1.0"
+   sodipodi:docbase="/home/users4/ommz/polzer/WWW/temp/running-marine"
+   sodipodi:docname="flag-carrying.svg"
+   inkscape:export-filename="/home/users4/ommz/polzer/WWW/temp/running-marine/flag-carrying-blue.png"
+   inkscape:export-xdpi="19.617588"
+   inkscape:export-ydpi="19.617588">
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs5">
+    <linearGradient
+       id="linearGradient3763">
+      <stop
+         style="stop-color:red;stop-opacity:1;"
+         offset="0"
+         id="stop3765" />
+      <stop
+         id="stop3775"
+         offset="0.33000001"
+         style="stop-color:yellow;stop-opacity:1;" />
+      <stop
+         style="stop-color:red;stop-opacity:1;"
+         offset="0.66000003"
+         id="stop3777" />
+      <stop
+         style="stop-color:yellow;stop-opacity:1;"
+         offset="1"
+         id="stop3767" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2801">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop2803" />
+      <stop
+         id="stop2809"
+         offset="0.94999999"
+         style="stop-color:white;stop-opacity:1;" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop2805" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2801"
+       id="linearGradient2844"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.539066,0,0,1.902367,2.172742,-512.696)"
+       x1="-0.064449146"
+       y1="134.97579"
+       x2="499.41825"
+       y2="134.97579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2801"
+       id="linearGradient3780"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.376665,0,0,1.902367,2.162274,-512.696)"
+       x1="-0.064449146"
+       y1="134.97579"
+       x2="499.41825"
+       y2="134.97579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2801"
+       id="linearGradient3788"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.450701,0,0,1.902367,2.167046,-512.696)"
+       x1="-0.064449146"
+       y1="134.97579"
+       x2="499.41825"
+       y2="134.97579" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2801"
+       id="linearGradient3793"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.450701,0,0,1.902367,2.167046,-512.696)"
+       x1="-0.064449146"
+       y1="134.97579"
+       x2="499.41825"
+       y2="134.97579" />
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask3790">
+      <rect
+         transform="matrix(0,1,-1,0,0,0)"
+         style="opacity:1;fill:url(#linearGradient3793);fill-opacity:1;stroke:none;stroke-width:7.87110186;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="rect1878"
+         width="225.11722"
+         height="511.84491"
+         x="2.137996"
+         y="-511.84491" />
+    </mask>
+  </defs>
+  <sodipodi:namedview
+     inkscape:window-height="645"
+     inkscape:window-width="1019"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     showgrid="true"
+     gridspacingx="2.5mm"
+     gridspacingy="2.5mm"
+     grid_units="mm"
+     inkscape:grid-points="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:grid-bbox="true"
+     inkscape:zoom="0.83829788"
+     inkscape:cx="287.59931"
+     inkscape:cy="273.85808"
+     inkscape:window-x="232"
+     inkscape:window-y="222"
+     inkscape:current-layer="svg2" />
+  <g
+     id="g1880"
+     clip-path="none"
+     mask="url(#mask3790)">
+    <g
+       inkscape:export-ydpi="9.7539482"
+       inkscape:export-xdpi="9.7539482"
+       transform="matrix(0.934555,0,0,0.934555,55.17645,61.98067)"
+       style="opacity:0.3"
+       id="g3727"
+       clip-path="none">
+      <path
+         sodipodi:nodetypes="ccccscccscccccccccccccccccccccccccc"
+         id="path3723"
+         d="M 77.936648,416.64918 C 66.929291,403.69748 47.183112,391.08021 47.468568,373.29631 C 61.580167,359.55032 81.18305,352.59514 97.68777,341.87372 C 110.74595,338.06729 118.44307,325.60734 131.14032,321.25949 C 135.23774,323.22955 138.01636,322.87548 140.0172,321.10616 C 145.99641,315.81884 145.02996,297.89311 151.55592,291.58386 C 160.41708,277.70343 159.66836,263.16374 151.9131,249.96044 C 155.45664,243.72563 166.71663,233.58495 153.20463,230.91525 C 150.00252,215.17855 175.41335,202.075 175.86122,197.3583 C 176.33392,192.38001 161.41329,172.43211 164.3281,159.50104 C 176.9793,149.65115 169.78762,127.26772 185.31798,119.25569 C 192.29054,113.20477 210.4602,112.16805 212.11472,108.77965 C 201.12352,97.080172 196.85491,76.451388 208.74212,64.292723 C 224.70534,54.897624 253.66981,63.271708 249.38462,85.387324 C 246.46527,97.938613 255.64422,119.85276 235.95305,120.95585 C 230.47567,135.53763 249.4295,147.25179 253.87515,160.6006 C 265.05211,172.03304 281.81019,176.78954 296.25889,178.5893 C 310.67702,185.99278 288.95145,207.16258 276.86491,208.87501 C 266.07803,212.64746 260.99023,200.43911 248.56706,199.24357 C 238.83475,180.87439 228.23756,204.15442 225.12821,214.88295 C 213.65178,221.44238 218.19122,227.13612 229.18395,228.95525 C 245.80155,238.06299 267.29134,240.22536 282.438,253.76183 C 299.52394,258.59567 310.08927,275.78366 295.39762,289.93827 C 298.94588,304.03742 292.54903,321.6244 289.93715,337.16017 C 278.51909,356.2747 292.73993,376.18783 309.33405,385.30202 C 313.65263,407.67285 287.14409,394.36219 275.71731,391.48441 C 260.84112,389.40428 250.51246,374.97195 260.19241,361.87832 C 261.27126,344.49092 263.85189,326.74433 259.40604,309.69521 C 257.08074,299.89268 265.30058,279.83135 249.8705,289.28304 C 236.68476,288.01966 223.42917,279.26247 210.09004,284.32363 C 197.57182,299.06507 191.69147,317.89165 180.59757,333.39344 C 175.89821,346.24998 171.80041,359.44265 155.36011,356.73483 C 136.17465,361.97053 118.11284,370.88329 98.07399,372.33299 C 72.235605,375.57602 96.62115,400.99427 88.93957,414.97797 C 86.16289,418.03926 81.55,417.41052 77.936648,416.64918 z "
+         style="fill:red;fill-opacity:1;stroke:black;stroke-width:5.35013991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="ccsccscc"
+         id="path3725"
+         d="M 279.0423,191.87383 L 330.33071,-14.440493 C 304.24885,-21.480848 277.5851,-19.962497 250.79521,-25.067388 C 225.00536,-31.478574 192.76761,-48.637795 192.76761,-48.637795 L 175.66896,20.143756 C 175.66896,20.143756 207.91424,37.272644 233.7041,43.683836 C 259.49396,50.095029 296.03668,50.066395 296.03668,50.066395 L 261.84691,187.59917"
+         style="fill:blue;fill-opacity:1;stroke:black;stroke-width:5.35013991;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:1" />
+    </g>
+    <use
+       style="opacity:0.7"
+       transform="translate(-18.6911,0)"
+       height="470"
+       width="503"
+       id="use3731"
+       xlink:href="#g3727"
+       y="0"
+       x="0" />
+    <use
+       style="opacity:0.7"
+       height="470"
+       width="503"
+       transform="translate(-18.6911,0)"
+       id="use3733"
+       xlink:href="#use3731"
+       y="0"
+       x="0" />
+    <use
+       style="opacity:0.7"
+       height="470"
+       width="503"
+       transform="translate(-18.6911,0)"
+       id="use3735"
+       xlink:href="#use3733"
+       y="0"
+       x="0" />
+    <use
+       style="opacity:0.7"
+       height="470"
+       width="503"
+       transform="translate(-18.6911,0)"
+       id="use3737"
+       xlink:href="#use3735"
+       y="0"
+       x="0" />
+    <path
+       sodipodi:nodetypes="ccccscccscccccccccccccccccccccccccc"
+       id="path1873"
+       d="M 146.70363,451.36224 C 136.41665,439.25817 117.96276,427.46664 118.22954,410.8466 C 131.4176,398.00022 149.73758,391.50022 165.16214,381.48046 C 177.36573,377.92315 184.55911,366.27864 196.42539,362.21533 C 200.25466,364.05646 202.85143,363.72556 204.72132,362.07204 C 210.30922,357.13075 209.40602,340.37817 215.50489,334.48182 C 223.78613,321.5098 223.08641,307.92166 215.8387,295.58245 C 219.15033,289.75568 229.67341,280.27865 217.0457,277.78367 C 214.05316,263.07686 237.80097,250.83087 238.21953,246.42286 C 238.6613,241.77037 224.71715,223.12796 227.4412,211.04316 C 239.26444,201.8379 232.54342,180.91935 247.05739,173.43167 C 253.57364,167.77675 270.55418,166.80788 272.10042,163.64124 C 261.82854,152.70743 257.83929,133.4287 268.94854,122.06576 C 283.86705,113.28552 310.93594,121.11156 306.93119,141.77982 C 304.2029,153.50969 312.78113,173.98967 294.37865,175.02056 C 289.25974,188.64804 306.97314,199.59557 311.12784,212.07076 C 321.57332,222.75501 337.23467,227.20022 350.73778,228.88219 C 364.21231,235.80115 343.90857,255.58549 332.61304,257.18585 C 322.5321,260.71142 317.77727,249.30204 306.16714,248.18474 C 297.07176,231.01774 287.1681,252.7742 284.26224,262.80061 C 273.53689,268.93075 277.77925,274.25187 288.05256,275.95194 C 303.58262,284.46363 323.66601,286.48448 337.8214,299.13506 C 353.78915,303.65255 363.66303,319.71567 349.93287,332.94393 C 353.24892,346.12036 347.27071,362.55636 344.82976,377.07539 C 334.15896,394.93897 347.44912,413.54889 362.95723,422.0666 C 366.99318,442.97337 342.2195,430.53383 331.54054,427.84438 C 317.63792,425.90039 307.98522,412.41258 317.03167,400.17586 C 318.03991,383.92638 320.45165,367.34122 316.29676,351.40788 C 314.12364,342.24687 321.80553,323.49846 307.38528,332.33158 C 295.06248,331.15088 282.6744,322.96681 270.20825,327.69674 C 258.50928,341.47343 253.01377,359.0679 242.64591,373.55518 C 238.2541,385.57032 234.42448,397.8996 219.06012,395.36899 C 201.13025,400.26204 184.2505,408.5915 165.52309,409.94633 C 141.3757,412.97712 164.16533,436.73187 156.98647,449.80041 C 154.39151,452.66135 150.08051,452.07376 146.70363,451.36224 z "
+       style="fill:red;fill-opacity:1;stroke:black;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+       clip-path="none" />
+    <path
+       sodipodi:nodetypes="ccsccscc"
+       id="path3671"
+       d="M 334.64793,241.29732 L 382.57977,48.485235 C 358.20483,41.905636 333.28609,43.324619 308.24947,38.553817 C 284.14743,32.562211 254.01948,16.525975 254.01948,16.525975 L 238.03985,80.806118 C 238.03985,80.806118 268.17484,96.814006 292.27689,102.80562 C 316.37893,108.79723 350.53011,108.77047 350.53011,108.77047 L 318.57789,237.30241"
+       style="fill:blue;fill-opacity:1;stroke:black;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       clip-path="none" />
+  </g>
+</svg>

Added: trunk/misc/sb-flag-dropped.svg
===================================================================
--- trunk/misc/sb-flag-dropped.svg	2006-08-22 03:54:52 UTC (rev 1840)
+++ trunk/misc/sb-flag-dropped.svg	2006-08-22 11:22:09 UTC (rev 1841)
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="744.09448819"
+   height="1052.3622047"
+   id="svg5531"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docbase="/home/users4/ommz/polzer/WWW/temp/running-marine"
+   sodipodi:docname="flag-dropped.svg"
+   inkscape:export-filename="/home/users4/ommz/polzer/WWW/temp/running-marine/flag-dropped-blue.png"
+   inkscape:export-xdpi="13.401096"
+   inkscape:export-ydpi="13.401096">
+  <defs
+     id="defs5533" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7"
+     inkscape:cx="375"
+     inkscape:cy="574.45286"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     inkscape:window-width="854"
+     inkscape:window-height="582"
+     inkscape:window-x="153"
+     inkscape:window-y="185" />
+  <metadata
+     id="metadata5536">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="opacity:0.4;fill:#6f6f6f;fill-opacity:1;stroke:black;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       d="M 128.57143,612.36219 L 240,442.36218 L 545.71428,463.79076 L 372.85714,636.6479 L 128.57143,612.36219 z "
+       id="path5540"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       sodipodi:nodetypes="cccsccscc"
+       id="path3671"
+       d="M 260.11602,526.80611 L 269.0491,540.74905 L 436.33978,433.56795 C 423.14748,412.0414 404.06506,395.95356 389.14932,375.28684 C 375.75138,354.37505 364.8752,322.02443 364.8752,322.02443 L 309.10345,357.75672 C 309.10345,357.75672 320.00421,390.09157 333.40215,411.00337 C 346.80009,431.91517 371.63495,455.35729 371.63495,455.35729 L 260.11602,526.80611 z "
+       style="fill:blue;fill-opacity:1;stroke:black;stroke-width:7.47643995;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+  </g>
+</svg>

Added: trunk/misc/sb-flag-taken.svg
===================================================================
--- trunk/misc/sb-flag-taken.svg	2006-08-22 03:54:52 UTC (rev 1840)
+++ trunk/misc/sb-flag-taken.svg	2006-08-22 11:22:09 UTC (rev 1841)
@@ -0,0 +1,129 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   width="503"
+   height="470"
+   version="1.0"
+   sodipodi:docbase="/home/users4/ommz/polzer/WWW/temp/running-marine"
+   sodipodi:docname="flag-taken.svg"
+   inkscape:export-filename="/home/users4/ommz/polzer/WWW/temp/running-marine/flag-taken-blue.png"
+   inkscape:export-xdpi="9.7539482"
+   inkscape:export-ydpi="9.7539482">
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs5" />
+  <sodipodi:namedview
+     inkscape:window-height="625"
+     inkscape:window-width="854"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     showgrid="true"
+     gridspacingx="2.5mm"
+     gridspacingy="2.5mm"
+     grid_units="mm"
+     inkscape:grid-points="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:grid-bbox="true"
+     inkscape:zoom="0.41914894"
+     inkscape:cx="287.59931"
+     inkscape:cy="103.2055"
+     inkscape:window-x="122"
+     inkscape:window-y="154"
+     inkscape:current-layer="svg2" />
+  <g
+     id="g3727"
+     style="opacity:0.3"
+     transform="matrix(0.934555,0,0,0.934555,55.17645,61.98067)"
+     inkscape:export-xdpi="9.7539482"
+     inkscape:export-ydpi="9.7539482">
+    <path
+       style="fill:red;fill-opacity:1;stroke:black;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 77.936648,416.64918 C 66.929291,403.69748 47.183112,391.08021 47.468568,373.29631 C 61.580167,359.55032 81.18305,352.59514 97.68777,341.87372 C 110.74595,338.06729 118.44307,325.60734 131.14032,321.25949 C 135.23774,323.22955 138.01636,322.87548 140.0172,321.10616 C 145.99641,315.81884 145.02996,297.89311 151.55592,291.58386 C 160.41708,277.70343 159.66836,263.16374 151.9131,249.96044 C 155.45664,243.72563 166.71663,233.58495 153.20463,230.91525 C 150.00252,215.17855 175.41335,202.075 175.86122,197.3583 C 176.33392,192.38001 161.41329,172.43211 164.3281,159.50104 C 176.9793,149.65115 169.78762,127.26772 185.31798,119.25569 C 192.29054,113.20477 210.4602,112.16805 212.11472,108.77965 C 201.12352,97.080172 196.85491,76.451388 208.74212,64.292723 C 224.70534,54.897624 253.66981,63.271708 249.38462,85.387324 C 246.46527,97.938613 255.64422,119.85276 235.95305,120.95585 C 230.47567,135.53763 249.4295,147.25179 253.87515,160.6006 C 265.05211,172.03304 281.81019,176.78954 296.25889,178.5893 C 310.67702,185.99278 288.95145,207.16258 276.86491,208.87501 C 266.07803,212.64746 260.99023,200.43911 248.56706,199.24357 C 238.83475,180.87439 228.23756,204.15442 225.12821,214.88295 C 213.65178,221.44238 218.19122,227.13612 229.18395,228.95525 C 245.80155,238.06299 267.29134,240.22536 282.438,253.76183 C 299.52394,258.59567 310.08927,275.78366 295.39762,289.93827 C 298.94588,304.03742 292.54903,321.6244 289.93715,337.16017 C 278.51909,356.2747 292.73993,376.18783 309.33405,385.30202 C 313.65263,407.67285 287.14409,394.36219 275.71731,391.48441 C 260.84112,389.40428 250.51246,374.97195 260.19241,361.87832 C 261.27126,344.49092 263.85189,326.74433 259.40604,309.69521 C 257.08074,299.89268 265.30058,279.83135 249.8705,289.28304 C 236.68476,288.01966 223.42917,279.26247 210.09004,284.32363 C 197.57182,299.06507 191.69147,317.89165 180.59757,333.39344 C 175.89821,346.24998 171.80041,359.44265 155.36011,356.73483 C 136.17465,361.97053 118.11284,370.88329 98.07399,372.33299 C 72.235605,375.57602 96.62115,400.99427 88.93957,414.97797 C 86.16289,418.03926 81.55,417.41052 77.936648,416.64918 z "
+       id="path3723"
+       sodipodi:nodetypes="ccccscccscccccccccccccccccccccccccc" />
+    <path
+       style="fill:blue;fill-opacity:1;stroke:black;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:1"
+       d="M 279.0423,191.87383 L 330.33071,-14.440493 C 304.24885,-21.480848 277.5851,-19.962497 250.79521,-25.067388 C 225.00536,-31.478574 192.76761,-48.637795 192.76761,-48.637795 L 175.66896,20.143756 C 175.66896,20.143756 207.91424,37.272644 233.7041,43.683836 C 259.49396,50.095029 296.03668,50.066395 296.03668,50.066395 L 261.84691,187.59917"
+       id="path3725"
+       sodipodi:nodetypes="ccsccscc" />
+  </g>
+  <use
+     x="0"
+     y="0"
+     xlink:href="#g3727"
+     id="use3731"
+     width="503"
+     height="470"
+     transform="translate(-18.6911,0)"
+     style="opacity:0.7" />
+  <use
+     x="0"
+     y="0"
+     xlink:href="#use3731"
+     id="use3733"
+     transform="translate(-18.6911,0)"
+     width="503"
+     height="470"
+     style="opacity:0.7" />
+  <use
+     x="0"
+     y="0"
+     xlink:href="#use3733"
+     id="use3735"
+     transform="translate(-18.6911,0)"
+     width="503"
+     height="470"
+     style="opacity:0.7" />
+  <use
+     x="0"
+     y="0"
+     xlink:href="#use3735"
+     id="use3737"
+     transform="translate(-18.6911,0)"
+     width="503"
+     height="470"
+     style="opacity:0.7" />
+  <g
+     id="g3739"
+     transform="matrix(0.934555,0,0,0.934555,55.17645,61.98067)">
+    <path
+       sodipodi:nodetypes="ccccscccscccccccccccccccccccccccccc"
+       id="path1873"
+       d="M 97.936648,416.64918 C 86.929291,403.69748 67.183112,391.08021 67.468568,373.29631 C 81.580167,359.55032 101.18305,352.59514 117.68777,341.87372 C 130.74595,338.06729 138.44307,325.60734 151.14032,321.25949 C 155.23774,323.22955 158.01636,322.87548 160.0172,321.10616 C 165.99641,315.81884 165.02996,297.89311 171.55592,291.58386 C 180.41708,277.70343 179.66836,263.16374 171.9131,249.96044 C 175.45664,243.72563 186.71663,233.58495 173.20463,230.91525 C 170.00252,215.17855 195.41335,202.075 195.86122,197.3583 C 196.33392,192.38001 181.41329,172.43211 184.3281,159.50104 C 196.9793,149.65115 189.78762,127.26772 205.31798,119.25569 C 212.29054,113.20477 230.4602,112.16805 232.11472,108.77965 C 221.12352,97.080172 216.85491,76.451388 228.74212,64.292723 C 244.70534,54.897624 273.66981,63.271708 269.38462,85.387324 C 266.46527,97.938613 275.64422,119.85276 255.95305,120.95585 C 250.47567,135.53763 269.4295,147.25179 273.87515,160.6006 C 285.05211,172.03304 301.81019,176.78954 316.25889,178.5893 C 330.67702,185.99278 308.95145,207.16258 296.86491,208.87501 C 286.07803,212.64746 280.99023,200.43911 268.56706,199.24357 C 258.83475,180.87439 248.23756,204.15442 245.12821,214.88295 C 233.65178,221.44238 238.19122,227.13612 249.18395,228.95525 C 265.80155,238.06299 287.29134,240.22536 302.438,253.76183 C 319.52394,258.59567 330.08927,275.78366 315.39762,289.93827 C 318.94588,304.03742 312.54903,321.6244 309.93715,337.16017 C 298.51909,356.2747 312.73993,376.18783 329.33405,385.30202 C 333.65263,407.67285 307.14409,394.36219 295.71731,391.48441 C 280.84112,389.40428 270.51246,374.97195 280.19241,361.87832 C 281.27126,344.49092 283.85189,326.74433 279.40604,309.69521 C 277.08074,299.89268 285.30058,279.83135 269.8705,289.28304 C 256.68476,288.01966 243.42917,279.26247 230.09004,284.32363 C 217.57182,299.06507 211.69147,317.89165 200.59757,333.39344 C 195.89821,346.24998 191.80041,359.44265 175.36011,356.73483 C 156.17465,361.97053 138.11284,370.88329 118.07399,372.33299 C 92.235605,375.57602 116.62115,400.99427 108.93957,414.97797 C 106.16289,418.03926 101.55,417.41052 97.936648,416.64918 z "
+       style="fill:red;fill-opacity:1;stroke:black;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    <path
+       sodipodi:nodetypes="ccsccscc"
+       id="path3671"
+       d="M 299.0423,191.87383 L 350.33071,-14.440493 C 324.24885,-21.480848 297.5851,-19.962497 270.79521,-25.067388 C 245.00536,-31.478574 212.76761,-48.637795 212.76761,-48.637795 L 195.66896,20.143756 C 195.66896,20.143756 227.91424,37.272644 253.7041,43.683836 C 279.49396,50.095029 316.03668,50.066395 316.03668,50.066395 L 281.84691,187.59917"
+       style="fill:blue;fill-opacity:1;stroke:black;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+  </g>
+</svg>




More information about the nexuiz-commits mailing list