<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=XML%2FSVG%2FclipPath</id>
		<title>XML/SVG/clipPath - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://wbex.ru/index.php?action=history&amp;feed=atom&amp;title=XML%2FSVG%2FclipPath"/>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML/SVG/clipPath&amp;action=history"/>
		<updated>2026-04-05T03:51:39Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://wbex.ru/index.php?title=XML/SVG/clipPath&amp;diff=9895&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML/SVG/clipPath&amp;diff=9895&amp;oldid=prev"/>
				<updated>2010-05-26T08:25:52Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 08:25, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://wbex.ru/index.php?title=XML/SVG/clipPath&amp;diff=9894&amp;oldid=prev</id>
		<title> в 18:22, 25 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://wbex.ru/index.php?title=XML/SVG/clipPath&amp;diff=9894&amp;oldid=prev"/>
				<updated>2010-05-25T18:22:29Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Using SVG clippath Elements with Grid Patterns==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;iso-8859-1&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE svg PUBLIC &amp;quot;-//W3C//DTD SVG 20001102//EN&amp;quot;&lt;br /&gt;
 &amp;quot;http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;svg width=&amp;quot;800&amp;quot; height=&amp;quot;500&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;defs&amp;gt;&lt;br /&gt;
    &amp;lt;pattern id=&amp;quot;checkerPattern&amp;quot; width=&amp;quot;80&amp;quot; height=&amp;quot;80&amp;quot;&lt;br /&gt;
      patternUnits=&amp;quot;userSpaceOnUse&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;rect fill=&amp;quot;red&amp;quot; stroke=&amp;quot;white&amp;quot; stroke-dasharray=&amp;quot;4 4 4 4&amp;quot;&lt;br /&gt;
        stroke-width=&amp;quot;8&amp;quot; x=&amp;quot;0&amp;quot; y=&amp;quot;0&amp;quot; width=&amp;quot;40&amp;quot; height=&amp;quot;40&amp;quot; /&amp;gt;&lt;br /&gt;
      &amp;lt;rect fill=&amp;quot;blue&amp;quot; stroke=&amp;quot;yellow&amp;quot; stroke-dasharray=&amp;quot;1 1 1 1&amp;quot;&lt;br /&gt;
        stroke-width=&amp;quot;6&amp;quot; x=&amp;quot;0&amp;quot; y=&amp;quot;40&amp;quot; width=&amp;quot;40&amp;quot; height=&amp;quot;40&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/pattern&amp;gt;&lt;br /&gt;
    &amp;lt;clipPath id=&amp;quot;clipPathDefinition&amp;quot;&lt;br /&gt;
      clipPathUnits=&amp;quot;userSpaceOnUse&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;path d=&amp;quot;m0,200 l100,-100 100,100 -100,100z&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/clipPath&amp;gt;&lt;br /&gt;
  &amp;lt;/defs&amp;gt;&lt;br /&gt;
  &amp;lt;g transform=&amp;quot;translate(50,10)&amp;quot; clip-path=&amp;quot;url(#clipPathDefinition)&amp;quot;&lt;br /&gt;
    stroke=&amp;quot;black&amp;quot; fill=&amp;quot;none&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;rect fill=&amp;quot;url(#checkerPattern)&amp;quot; style=&amp;quot;stroke:white&amp;quot; x=&amp;quot;0&amp;quot;&lt;br /&gt;
      y=&amp;quot;0&amp;quot; width=&amp;quot;400&amp;quot; height=&amp;quot;400&amp;quot; /&amp;gt;&lt;br /&gt;
  &amp;lt;/g&amp;gt;&lt;br /&gt;
&amp;lt;/svg&amp;gt;&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
			</entry>

	</feed>