<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net%2F2D%2FGraphics_Path_Iterator</id>
		<title>VB.Net/2D/Graphics Path Iterator - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net%2F2D%2FGraphics_Path_Iterator"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/2D/Graphics_Path_Iterator&amp;action=history"/>
		<updated>2026-04-05T19:15:47Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net/2D/Graphics_Path_Iterator&amp;diff=144&amp;oldid=prev</id>
		<title> в 16:40, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/2D/Graphics_Path_Iterator&amp;diff=144&amp;oldid=prev"/>
				<updated>2010-05-26T16:40:06Z</updated>
		
		<summary type="html">&lt;p&gt;&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;Версия 16:40, 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>
			</entry>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net/2D/Graphics_Path_Iterator&amp;diff=145&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net/2D/Graphics_Path_Iterator&amp;diff=145&amp;oldid=prev"/>
				<updated>2010-05-26T12:42:01Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Use Graphics Path Iterator to get the Path information==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;&lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
Imports System.Drawing&lt;br /&gt;
Imports System.Drawing.Drawing2D&lt;br /&gt;
Imports System.Drawing.Text&lt;br /&gt;
Imports System.Drawing.Imaging&lt;br /&gt;
Public Class MainClass&lt;br /&gt;
  Shared Sub Main()&lt;br /&gt;
    Dim p As GraphicsPath = New GraphicsPath()&lt;br /&gt;
    Dim pts() As PointF = {New PointF(50.0F, 50.0F), _&lt;br /&gt;
                       New PointF(150.0F, 25.0F), _&lt;br /&gt;
                       New PointF(200.0F, 50.0F)}&lt;br /&gt;
    p.AddCurve(pts)&lt;br /&gt;
    p.AddRectangle(New Rectangle(60, 60, 50, 50))&lt;br /&gt;
    p.AddPie(100, 100, 80, 80, 0, 35)&lt;br /&gt;
    Dim iter As GraphicsPathIterator = New GraphicsPathIterator(p)&lt;br /&gt;
    Console.WriteLine(&amp;quot;Num pts in path = &amp;quot; &amp;amp; iter.Count.ToString())&lt;br /&gt;
    Console.WriteLine(&amp;quot;Num subpaths in path = &amp;quot; &amp;amp; iter.SubpathCount.ToString())&lt;br /&gt;
    Console.WriteLine(&amp;quot;Path has curve = &amp;quot; + iter.HasCurve().ToString())&lt;br /&gt;
    Dim StartIndex As Int32&lt;br /&gt;
    Dim EndIndex As Int32&lt;br /&gt;
    Dim i As Int32&lt;br /&gt;
    Dim IsClosed As Boolean&lt;br /&gt;
    &amp;quot; Rewind the Iterator.&lt;br /&gt;
    iter.Rewind()&lt;br /&gt;
    &amp;quot; List the Subpaths.&lt;br /&gt;
    For i = 0 To iter.SubpathCount - 1&lt;br /&gt;
      iter.NextSubpath(StartIndex, EndIndex, IsClosed)&lt;br /&gt;
      Console.WriteLine(&amp;quot;Start: &amp;quot; + StartIndex.ToString() + _&lt;br /&gt;
                         &amp;quot;  End: &amp;quot; + EndIndex.ToString() + _&lt;br /&gt;
                         &amp;quot;  IsClosed: &amp;quot; + IsClosed.ToString())&lt;br /&gt;
    Next&lt;br /&gt;
  End Sub&lt;br /&gt;
  &lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>