<?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: Draw an Arc with ActionScript</title>
	<atom:link href="http://www.pixelwit.com/blog/2007/07/draw-an-arc-with-actionscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pixelwit.com/blog/2007/07/draw-an-arc-with-actionscript/</link>
	<description>Making Flash Go</description>
	<lastBuildDate>Wed, 10 Mar 2010 15:30:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: J</title>
		<link>http://www.pixelwit.com/blog/2007/07/draw-an-arc-with-actionscript/comment-page-2/#comment-53138</link>
		<dc:creator>J</dc:creator>
		<pubDate>Fri, 19 Feb 2010 13:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixelwit.com/blog/2007/07/10/draw-an-arc-with-actionscript/#comment-53138</guid>
		<description>For anyone having trouble with properties not found ...

I added all the var&#039;s after drawArc( ... as Number&#039;s, and in front of &#039;moveTo, lineTo and lineStyle&#039; I added graphics.

Hope that helps.</description>
		<content:encoded><![CDATA[<p>For anyone having trouble with properties not found &#8230;</p>
<p>I added all the var&#8217;s after drawArc( &#8230; as Number&#8217;s, and in front of &#8216;moveTo, lineTo and lineStyle&#8217; I added graphics.</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.pixelwit.com/blog/2007/07/draw-an-arc-with-actionscript/comment-page-2/#comment-51160</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sat, 23 Jan 2010 14:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixelwit.com/blog/2007/07/10/draw-an-arc-with-actionscript/#comment-51160</guid>
		<description>Hi,

This has been really useful to me as someone very new to Flash and Actionscript. But while it works for me in Actionscript 2, when I try to load it in Actionscript 3 I get an error &quot;1180: Call to a possibly undefined method lineTo&quot; on moveTo, lineTo, and lineStyle. Does anyone know why this is, and what I would need to do to fix it for Actionscript 3?

Thanks a bunch!
J.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This has been really useful to me as someone very new to Flash and Actionscript. But while it works for me in Actionscript 2, when I try to load it in Actionscript 3 I get an error &#8220;1180: Call to a possibly undefined method lineTo&#8221; on moveTo, lineTo, and lineStyle. Does anyone know why this is, and what I would need to do to fix it for Actionscript 3?</p>
<p>Thanks a bunch!<br />
J.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wleader</title>
		<link>http://www.pixelwit.com/blog/2007/07/draw-an-arc-with-actionscript/comment-page-2/#comment-47913</link>
		<dc:creator>wleader</dc:creator>
		<pubDate>Wed, 02 Dec 2009 11:10:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixelwit.com/blog/2007/07/10/draw-an-arc-with-actionscript/#comment-47913</guid>
		<description>When I first used this code I got some unexpected results, because I expected the arc angle parameter to move anticlockwise. Normally 0 is right, 90 (pi/2) is up, 180 (pi) is left, and 270 (3pi/4) is down. Therefore increasing values go anticlockwise. The code as is requires a negative arcAngle to go anticlockwise. To correct this the calculated yy values should subtract the sine value instead of add. This results in positive arcAngle values to be anticlockwise and negative arcAngle values to be clockwise which conforms to normal mathematical conventions. (http://en.wikipedia.org/wiki/Angle#Positive_and_negative_angles)</description>
		<content:encoded><![CDATA[<p>When I first used this code I got some unexpected results, because I expected the arc angle parameter to move anticlockwise. Normally 0 is right, 90 (pi/2) is up, 180 (pi) is left, and 270 (3pi/4) is down. Therefore increasing values go anticlockwise. The code as is requires a negative arcAngle to go anticlockwise. To correct this the calculated yy values should subtract the sine value instead of add. This results in positive arcAngle values to be anticlockwise and negative arcAngle values to be clockwise which conforms to normal mathematical conventions. (<a href="http://en.wikipedia.org/wiki/Angle#Positive_and_negative_angles" rel="nofollow">http://en.wikipedia.org/wiki/Angle#Positive_and_negative_angles</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Animated Arc Drawing &#171; PiXELWiT</title>
		<link>http://www.pixelwit.com/blog/2007/07/draw-an-arc-with-actionscript/comment-page-2/#comment-41444</link>
		<dc:creator>Animated Arc Drawing &#171; PiXELWiT</dc:creator>
		<pubDate>Sat, 15 Aug 2009 23:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixelwit.com/blog/2007/07/10/draw-an-arc-with-actionscript/#comment-41444</guid>
		<description>[...] A recent comment on my Oval Drawing Tutorial asks how to &#8220;give the appearance that an oval is being drawn slowly&#8221;. Hmmm&#8230; this sounds like a job for my handy Arc Drawing Function. [...]</description>
		<content:encoded><![CDATA[<p>[...] A recent comment on my Oval Drawing Tutorial asks how to &#8220;give the appearance that an oval is being drawn slowly&#8221;. Hmmm&#8230; this sounds like a job for my handy Arc Drawing Function. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bugshake</title>
		<link>http://www.pixelwit.com/blog/2007/07/draw-an-arc-with-actionscript/comment-page-2/#comment-38434</link>
		<dc:creator>bugshake</dc:creator>
		<pubDate>Tue, 23 Jun 2009 11:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.pixelwit.com/blog/2007/07/10/draw-an-arc-with-actionscript/#comment-38434</guid>
		<description>Great piece of code, thanks a lot! Tbh I don&#039;t see why this is not in the AS3 api as a standard function, since it is available in the GUI as a tool.</description>
		<content:encoded><![CDATA[<p>Great piece of code, thanks a lot! Tbh I don&#8217;t see why this is not in the AS3 api as a standard function, since it is available in the GUI as a tool.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
