<?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: Panorama Viewer</title>
	<atom:link href="http://papervision2.com/panorama-viewer/feed/" rel="self" type="application/rss+xml" />
	<link>http://papervision2.com/panorama-viewer/</link>
	<description>Papervision2.com - Best resource for Papervision3d tutorials</description>
	<lastBuildDate>Wed, 10 Mar 2010 14:12:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: PittMFUG &#187; Blog Archive &#187; July Meeting Redux</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-16730</link>
		<dc:creator>PittMFUG &#187; Blog Archive &#187; July Meeting Redux</dc:creator>
		<pubDate>Sun, 26 Jul 2009 20:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-16730</guid>
		<description>[...] of the links we looked at:The photo from FlickrTutorial this example was based onFull screen cube panoramicMore on full cube [...]</description>
		<content:encoded><![CDATA[<p>[...] of the links we looked at:The photo from FlickrTutorial this example was based onFull screen cube panoramicMore on full cube [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-15598</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Tue, 23 Jun 2009 20:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-15598</guid>
		<description>I wish I could get this to work. I&#039;m taking your as class and trying to use it in the document class. Is this not correct?</description>
		<content:encoded><![CDATA[<p>I wish I could get this to work. I&#8217;m taking your as class and trying to use it in the document class. Is this not correct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-3897</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Fri, 12 Dec 2008 16:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-3897</guid>
		<description>Hi Luke,

this tutorial is great. I always wanted to create panorama viewer, but i was too lazy :-)

I have Nokia 6120 and tons of photos like this http://redboss.wz.cz/fotky/17-panorama4.jpg
Is there some easy way to put it into flash without &quot;slicing&quot; it in Photoshop into 4 JPGs or using Sprites - masks?

Tnank you and keep doing good work!</description>
		<content:encoded><![CDATA[<p>Hi Luke,</p>
<p>this tutorial is great. I always wanted to create panorama viewer, but i was too lazy :-)</p>
<p>I have Nokia 6120 and tons of photos like this <a href="http://redboss.wz.cz/fotky/17-panorama4.jpg" rel="nofollow">http://redboss.wz.cz/fotky/17-panorama4.jpg</a><br />
Is there some easy way to put it into flash without &#8220;slicing&#8221; it in Photoshop into 4 JPGs or using Sprites &#8211; masks?</p>
<p>Tnank you and keep doing good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-730</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Fri, 18 Jul 2008 20:50:59 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-730</guid>
		<description>The reason to this that I found is this:

the display object and the camera hold the same position, so the modulor between the two would be 0.

change - camera.z = 2;

then the error goes away...</description>
		<content:encoded><![CDATA[<p>The reason to this that I found is this:</p>
<p>the display object and the camera hold the same position, so the modulor between the two would be 0.</p>
<p>change &#8211; camera.z = 2;</p>
<p>then the error goes away&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-676</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Mon, 14 Jul 2008 12:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-676</guid>
		<description>i also get the lookat error... it comes from displayobject3d.as here:

	public function lookAt( targetObject:DisplayObject3D, upAxis:Number3D=null ):void
		{
		
			position.reset( this.x, this.y, this.z );
			target.reset( targetObject.x, targetObject.y, targetObject.z );
	
			zAxis.copyFrom(target); 
			zAxis.minusEq(position); 
			zAxis.normalize();
	
			if( zAxis.modulo &gt; 0.1 )
			{
				xAxis = Number3D.cross( zAxis, upAxis &#124;&#124; UP, xAxis );
				xAxis.normalize();
	
				yAxis = Number3D.cross( zAxis, xAxis, yAxis );
				yAxis.normalize();
	
				var look  :Matrix3D = this.transform;
				// scale fix for lookAt()
				look.n11 =  xAxis.x * _scaleX;
				look.n21 =  xAxis.y * _scaleX;
				look.n31 =  xAxis.z * _scaleX;
				
				look.n12 = -yAxis.x * _scaleY;
				look.n22 = -yAxis.y * _scaleY;
				look.n32 = -yAxis.z * _scaleY;
				
				look.n13 =  zAxis.x * _scaleZ;
				look.n23 =  zAxis.y * _scaleZ;
				look.n33 =  zAxis.z * _scaleZ;
	
				this._transformDirty = false;
				this._rotationDirty = true;
				
			}
			else
			{
				trace(&quot;lookAt error&quot;);
				
			}
		} 
	

i put in a &#039;trace(zAxis.modulo);&#039; and it comes out as 0  any idears?</description>
		<content:encoded><![CDATA[<p>i also get the lookat error&#8230; it comes from displayobject3d.as here:</p>
<p>	public function lookAt( targetObject:DisplayObject3D, upAxis:Number3D=null ):void<br />
		{</p>
<p>			position.reset( this.x, this.y, this.z );<br />
			target.reset( targetObject.x, targetObject.y, targetObject.z );</p>
<p>			zAxis.copyFrom(target);<br />
			zAxis.minusEq(position);<br />
			zAxis.normalize();</p>
<p>			if( zAxis.modulo &gt; 0.1 )<br />
			{<br />
				xAxis = Number3D.cross( zAxis, upAxis || UP, xAxis );<br />
				xAxis.normalize();</p>
<p>				yAxis = Number3D.cross( zAxis, xAxis, yAxis );<br />
				yAxis.normalize();</p>
<p>				var look  :Matrix3D = this.transform;<br />
				// scale fix for lookAt()<br />
				look.n11 =  xAxis.x * _scaleX;<br />
				look.n21 =  xAxis.y * _scaleX;<br />
				look.n31 =  xAxis.z * _scaleX;</p>
<p>				look.n12 = -yAxis.x * _scaleY;<br />
				look.n22 = -yAxis.y * _scaleY;<br />
				look.n32 = -yAxis.z * _scaleY;</p>
<p>				look.n13 =  zAxis.x * _scaleZ;<br />
				look.n23 =  zAxis.y * _scaleZ;<br />
				look.n33 =  zAxis.z * _scaleZ;</p>
<p>				this._transformDirty = false;<br />
				this._rotationDirty = true;</p>
<p>			}<br />
			else<br />
			{<br />
				trace(&#8220;lookAt error&#8221;);</p>
<p>			}<br />
		} </p>
<p>i put in a &#8216;trace(zAxis.modulo);&#8217; and it comes out as 0  any idears?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-619</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 07 Jul 2008 02:12:59 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-619</guid>
		<description>I tried it, but each frameloop I get a lookAt error?</description>
		<content:encoded><![CDATA[<p>I tried it, but each frameloop I get a lookAt error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-483</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 31 May 2008 02:36:52 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-483</guid>
		<description>Dude, you&#039;re awesome! Like you said: &quot;It seems to work sometimes, but sometimes not...&quot; But finally it worked. I&#039;m gonna try to compact it a little bit to see if it works better. Man, thanks for your tutorials.</description>
		<content:encoded><![CDATA[<p>Dude, you&#8217;re awesome! Like you said: &#8220;It seems to work sometimes, but sometimes not&#8230;&#8221; But finally it worked. I&#8217;m gonna try to compact it a little bit to see if it works better. Man, thanks for your tutorials.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JOsh vp</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-440</link>
		<dc:creator>JOsh vp</dc:creator>
		<pubDate>Wed, 14 May 2008 15:54:40 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-440</guid>
		<description>Can&#039;t seem to find the base class that is affiliated with this interaction..can someone send me that class.</description>
		<content:encoded><![CDATA[<p>Can&#8217;t seem to find the base class that is affiliated with this interaction..can someone send me that class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Yale</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-254</link>
		<dc:creator>Shawn Yale</dc:creator>
		<pubDate>Fri, 21 Mar 2008 17:39:18 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-254</guid>
		<description>Excellent demo project!</description>
		<content:encoded><![CDATA[<p>Excellent demo project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aisn</title>
		<link>http://papervision2.com/panorama-viewer/comment-page-1/#comment-165</link>
		<dc:creator>Aisn</dc:creator>
		<pubDate>Sun, 02 Mar 2008 13:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://papervision2.com/panorama-viewer/#comment-165</guid>
		<description>Hi,

nice job, i viewing it with a little smile in my face. I took this a few weeks ago with the COD4 360 Pictures for fun like this http://www.aisn.de/aisn/examples/PV3D_Test05.swf

I like your tutorials very well!

Thanks
Phil</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>nice job, i viewing it with a little smile in my face. I took this a few weeks ago with the COD4 360 Pictures for fun like this <a href="http://www.aisn.de/aisn/examples/PV3D_Test05.swf" rel="nofollow">http://www.aisn.de/aisn/examples/PV3D_Test05.swf</a></p>
<p>I like your tutorials very well!</p>
<p>Thanks<br />
Phil</p>
]]></content:encoded>
	</item>
</channel>
</rss>
