<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SVG Shape 2 Java2D Code</title>
	<atom:link href="http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/</link>
	<description>Jasper Potts's Blog on Java and Life</description>
	<lastBuildDate>Sun, 07 Mar 2010 11:09:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kiyut</title>
		<link>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/comment-page-1/#comment-861</link>
		<dc:creator>Kiyut</dc:creator>
		<pubDate>Tue, 10 Jul 2007 06:32:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/#comment-861</guid>
		<description>Another way to generate shape easily is to have function that return GeneralPath with parameter SVG path string

public GeneralPath generatPath(String s) {
    // code to return GeneralPath, should be similar to above with slight modification
}

use case:
String s = &quot;M 167.0 197.0 C 177.0 169.0 177.0 169.0 177.0 169.0 C 191.0 143.0 191.0 143.0 191.0 143.0 C 215.0 117.0 215.0 117.0 215.0 117.0&quot;;
GeneralPath path = generatePath(s);
// draw the path to output media</description>
		<content:encoded><![CDATA[<p>Another way to generate shape easily is to have function that return GeneralPath with parameter SVG path string</p>
<p>public GeneralPath generatPath(String s) {<br />
    // code to return GeneralPath, should be similar to above with slight modification<br />
}</p>
<p>use case:<br />
String s = &#8220;M 167.0 197.0 C 177.0 169.0 177.0 169.0 177.0 169.0 C 191.0 143.0 191.0 143.0 191.0 143.0 C 215.0 117.0 215.0 117.0 215.0 117.0&#8243;;<br />
GeneralPath path = generatePath(s);<br />
// draw the path to output media</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jasper Potts SVG to Java2D converter at Blog of Bug</title>
		<link>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/comment-page-1/#comment-860</link>
		<dc:creator>Jasper Potts SVG to Java2D converter at Blog of Bug</dc:creator>
		<pubDate>Sun, 08 Jul 2007 20:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/#comment-860</guid>
		<description>[...] Shape 2 SVB is available from Jasper&#8217;s blog. [...]</description>
		<content:encoded><![CDATA[<p>[...] Shape 2 SVB is available from Jasper&#8217;s blog. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kirill Grouchnikov</title>
		<link>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/comment-page-1/#comment-859</link>
		<dc:creator>Kirill Grouchnikov</dc:creator>
		<pubDate>Sun, 08 Jul 2007 20:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/#comment-859</guid>
		<description>I wrote a similar tool &lt;a href=&quot;http://weblogs.java.net/blog/kirillcool/archive/2006/10/svg_and_java_ui_3.html&quot; rel=&quot;nofollow&quot;&gt;back a few months ago&lt;/a&gt;. It supports almost everything in SVG (not a single path) except texts.</description>
		<content:encoded><![CDATA[<p>I wrote a similar tool <a href="http://weblogs.java.net/blog/kirillcool/archive/2006/10/svg_and_java_ui_3.html" rel="nofollow">back a few months ago</a>. It supports almost everything in SVG (not a single path) except texts.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
