<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: SVG Shape 2 Java2D Code</title>
	<link>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/</link>
	<description>Jasper Potts's Blog on Java and Life</description>
	<pubDate>Fri, 21 Nov 2008 14:15:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>

	<item>
		<title>By: Kiyut</title>
		<link>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/#comment-861</link>
		<author>Kiyut</author>
		<pubDate>Tue, 10 Jul 2007 06:32:35 +0000</pubDate>
		<guid>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 = "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";
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-860</link>
		<author>Jasper Potts SVG to Java2D converter at Blog of Bug</author>
		<pubDate>Sun, 08 Jul 2007 20:59:31 +0000</pubDate>
		<guid>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>[&#8230;] Shape 2 SVB is available from Jasper&#8217;s blog. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kirill Grouchnikov</title>
		<link>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/#comment-859</link>
		<author>Kirill Grouchnikov</author>
		<pubDate>Sun, 08 Jul 2007 20:06:24 +0000</pubDate>
		<guid>http://www.jasperpotts.com/blog/2007/07/svg-shape-2-java2d-code/#comment-859</guid>
		<description>I wrote a similar tool &lt;a href="http://weblogs.java.net/blog/kirillcool/archive/2006/10/svg_and_java_ui_3.html" rel="nofollow"&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>
