<?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: 3D Page Curl Effect &#8211; Updated</title>
	<atom:link href="http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/</link>
	<description>lee felarca - personal work and findings</description>
	<lastBuildDate>Wed, 01 Feb 2012 05:54:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Andrew</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-4223</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 01 Aug 2011 11:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-4223</guid>
		<description>Hello Matt,

If you can provide me the source code of your demo,
it would be highly appreciable..
thanks
Andrew.</description>
		<content:encoded><![CDATA[<p>Hello Matt,</p>
<p>If you can provide me the source code of your demo,<br />
it would be highly appreciable..<br />
thanks<br />
Andrew.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-4222</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 01 Aug 2011 11:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-4222</guid>
		<description>Hello Matt,
Well i try to figure out something with your refactored curling plane class,
but it did not seems to helping out,
well i have written this code and instantiate your class, but nothing shows up...
please check this out and tell me if you find anything..

Thanks in advance.
Andrew 

package
{
	import flash.display.Sprite;
	import flash.events.Event;
	
	import org.papervision3d.cameras.Camera3D;
	import org.papervision3d.events.FileLoadEvent;
	import org.papervision3d.materials.BitmapFileMaterial;
	import org.papervision3d.objects.primitives.Plane;
	import org.papervision3d.render.BasicRenderEngine;
	import org.papervision3d.scenes.Scene3D;
	import org.papervision3d.view.Viewport3D;

	public class MyClass extends Sprite
	{
		private var scene    :Scene3D;
		private var camera   :Camera3D;
		private var viewport :Viewport3D;
		private var renderer :BasicRenderEngine;
		private var material :BitmapFileMaterial;
		private var object   :Plane;

		public function MyClass()
		{
			scene = new Scene3D();

			camera = new Camera3D();

			viewport                  = new Viewport3D();
			viewport.autoScaleToStage = true;
			addChild(viewport);

			renderer = new BasicRenderEngine();

			material             = new BitmapFileMaterial(&quot;b.png&quot;, true);
			material.doubleSided = true;

			material.addEventListener(FileLoadEvent.LOAD_COMPLETE, handleLoadComplete);

			//object = new Plane();
			
		}

		private function handleLoadComplete(e:FileLoadEvent):void
		{
			material.removeEventListener(FileLoadEvent.LOAD_COMPLETE, handleLoadComplete);
			//object.material = material;
			trace(material.bitmap)
		    material.removeEventListener(FileLoadEvent.LOAD_COMPLETE, handleLoadComplete);
			var _cp:CurlingPlane;
			_cp=new CurlingPlane(material);	
			scene.addChild(_cp);
			addEventListener(Event.ENTER_FRAME, handleEnterFrame);
		}

		private function handleEnterFrame(e:Event):void
		{
			//object.yaw(1);

			renderer.renderScene(scene, camera, viewport);
		}
	}
}</description>
		<content:encoded><![CDATA[<p>Hello Matt,<br />
Well i try to figure out something with your refactored curling plane class,<br />
but it did not seems to helping out,<br />
well i have written this code and instantiate your class, but nothing shows up&#8230;<br />
please check this out and tell me if you find anything..</p>
<p>Thanks in advance.<br />
Andrew </p>
<p>package<br />
{<br />
	import flash.display.Sprite;<br />
	import flash.events.Event;</p>
<p>	import org.papervision3d.cameras.Camera3D;<br />
	import org.papervision3d.events.FileLoadEvent;<br />
	import org.papervision3d.materials.BitmapFileMaterial;<br />
	import org.papervision3d.objects.primitives.Plane;<br />
	import org.papervision3d.render.BasicRenderEngine;<br />
	import org.papervision3d.scenes.Scene3D;<br />
	import org.papervision3d.view.Viewport3D;</p>
<p>	public class MyClass extends Sprite<br />
	{<br />
		private var scene    :Scene3D;<br />
		private var camera   :Camera3D;<br />
		private var viewport :Viewport3D;<br />
		private var renderer :BasicRenderEngine;<br />
		private var material :BitmapFileMaterial;<br />
		private var object   :Plane;</p>
<p>		public function MyClass()<br />
		{<br />
			scene = new Scene3D();</p>
<p>			camera = new Camera3D();</p>
<p>			viewport                  = new Viewport3D();<br />
			viewport.autoScaleToStage = true;<br />
			addChild(viewport);</p>
<p>			renderer = new BasicRenderEngine();</p>
<p>			material             = new BitmapFileMaterial(&#8220;b.png&#8221;, true);<br />
			material.doubleSided = true;</p>
<p>			material.addEventListener(FileLoadEvent.LOAD_COMPLETE, handleLoadComplete);</p>
<p>			//object = new Plane();</p>
<p>		}</p>
<p>		private function handleLoadComplete(e:FileLoadEvent):void<br />
		{<br />
			material.removeEventListener(FileLoadEvent.LOAD_COMPLETE, handleLoadComplete);<br />
			//object.material = material;<br />
			trace(material.bitmap)<br />
		    material.removeEventListener(FileLoadEvent.LOAD_COMPLETE, handleLoadComplete);<br />
			var _cp:CurlingPlane;<br />
			_cp=new CurlingPlane(material);<br />
			scene.addChild(_cp);<br />
			addEventListener(Event.ENTER_FRAME, handleEnterFrame);<br />
		}</p>
<p>		private function handleEnterFrame(e:Event):void<br />
		{<br />
			//object.yaw(1);</p>
<p>			renderer.renderScene(scene, camera, viewport);<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danro</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-3990</link>
		<dc:creator>Danro</dc:creator>
		<pubDate>Tue, 05 Apr 2011 02:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-3990</guid>
		<description>Hi all, just wanted to point out that my source files for the extended version of this have been archived and moved to GitHub:

https://github.com/danro/pv3d-pageflip-as3

or download the zip version...

https://github.com/danro/pv3d-pageflip-as3/zipball/master

Maybe someone should improve this and port it to Away3D ;)

-Danro</description>
		<content:encoded><![CDATA[<p>Hi all, just wanted to point out that my source files for the extended version of this have been archived and moved to GitHub:</p>
<p><a href="https://github.com/danro/pv3d-pageflip-as3" rel="nofollow">https://github.com/danro/pv3d-pageflip-as3</a></p>
<p>or download the zip version&#8230;</p>
<p><a href="https://github.com/danro/pv3d-pageflip-as3/zipball/master" rel="nofollow">https://github.com/danro/pv3d-pageflip-as3/zipball/master</a></p>
<p>Maybe someone should improve this and port it to Away3D ;)</p>
<p>-Danro</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Perkins</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-1122</link>
		<dc:creator>Matt Perkins</dc:creator>
		<pubDate>Tue, 02 Mar 2010 19:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-1122</guid>
		<description>I slightly refactored the CurlingPlane class to work with pv 2.0. I wanted use the effect for a project. Also added a &quot;curl&quot; prop to easily set the rotation and make it work with a tweening engine. File here:
http://www.nudoru.com/stuff/CurlingPlane.as

Not sure if it&#039;s 100% perfect, but it works in my testing.</description>
		<content:encoded><![CDATA[<p>I slightly refactored the CurlingPlane class to work with pv 2.0. I wanted use the effect for a project. Also added a &#8220;curl&#8221; prop to easily set the rotation and make it work with a tweening engine. File here:<br />
<a href="http://www.nudoru.com/stuff/CurlingPlane.as" rel="nofollow">http://www.nudoru.com/stuff/CurlingPlane.as</a></p>
<p>Not sure if it&#8217;s 100% perfect, but it works in my testing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-1052</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Tue, 24 Nov 2009 15:27:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-1052</guid>
		<description>o/

Im trying to refactor this to pv 2.0. Any chance I could reach you via remote support hum, like email if i have any questions about bits and bobs of what Im trying to cookup,

Thomas!</description>
		<content:encoded><![CDATA[<p>o/</p>
<p>Im trying to refactor this to pv 2.0. Any chance I could reach you via remote support hum, like email if i have any questions about bits and bobs of what Im trying to cookup,</p>
<p>Thomas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-80</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Sat, 21 Mar 2009 17:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-80</guid>
		<description>solo-

Sorry, this source code targets Papervision v1.5. There have been a lot of changes to the PV framework since that time, which means you&#039;ll have to do a little bit of refactoring and maybe some other changes to make this run in the current version.</description>
		<content:encoded><![CDATA[<p>solo-</p>
<p>Sorry, this source code targets Papervision v1.5. There have been a lot of changes to the PV framework since that time, which means you&#8217;ll have to do a little bit of refactoring and maybe some other changes to make this run in the current version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bristol Web Design</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-77</link>
		<dc:creator>Bristol Web Design</dc:creator>
		<pubDate>Sat, 21 Mar 2009 15:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-77</guid>
		<description>This has been extended here:

http://danro.net/2007/11/08/pv3d-pageflip-demo/

Really great learning demo.

H Risley</description>
		<content:encoded><![CDATA[<p>This has been extended here:</p>
<p><a href="http://danro.net/2007/11/08/pv3d-pageflip-demo/" rel="nofollow">http://danro.net/2007/11/08/pv3d-pageflip-demo/</a></p>
<p>Really great learning demo.</p>
<p>H Risley</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: solo</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-74</link>
		<dc:creator>solo</dc:creator>
		<pubDate>Wed, 11 Mar 2009 13:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-74</guid>
		<description>the Mesh3D class seems to have been removed. Other classes seem to have been relocated.</description>
		<content:encoded><![CDATA[<p>the Mesh3D class seems to have been removed. Other classes seem to have been relocated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-75</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Thu, 05 Feb 2009 16:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-75</guid>
		<description>Thanks Phil. I don&#039;t have any immediate plans to update it, but if you get it working, please do let me know and I&#039;ll update the code.

What I have wanted to do with it for a while is to find a way to &#039;parse&#039; PDF files on the client-side so that an entire document could be browsed online...</description>
		<content:encoded><![CDATA[<p>Thanks Phil. I don&#8217;t have any immediate plans to update it, but if you get it working, please do let me know and I&#8217;ll update the code.</p>
<p>What I have wanted to do with it for a while is to find a way to &#8216;parse&#8217; PDF files on the client-side so that an entire document could be browsed online&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://www.zeropointnine.com/blog/3d-page-curl-effect-updated/comment-page-1/#comment-76</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 05 Feb 2009 16:45:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeropointnine.com/blog/3d-page-curl-effect-updated#comment-76</guid>
		<description>Thanks for the cool effect.   It seems though that it no longer works with the latest version of Papervision 3D,   I was wondering if you were planning on updating it anytime soon?

Thanks again for the great stuff!</description>
		<content:encoded><![CDATA[<p>Thanks for the cool effect.   It seems though that it no longer works with the latest version of Papervision 3D,   I was wondering if you were planning on updating it anytime soon?</p>
<p>Thanks again for the great stuff!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

