<?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: Moving a Texture inside of a Plane</title>
	<atom:link href="http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/feed/" rel="self" type="application/rss+xml" />
	<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/</link>
	<description>Papervision3D, ActionScript, and Flex examples and tutorials by John Lindquist</description>
	<lastBuildDate>Mon, 15 Mar 2010 14:11:25 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: CJ</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-15672</link>
		<dc:creator>CJ</dc:creator>
		<pubDate>Mon, 28 Dec 2009 21:33:29 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-15672</guid>
		<description>Flawless execution. As always, thank you. On another note, I find the Tondeur &amp; Winder book especially compelling. They are two very skilled developers who have a knack at getting to the very root of the subject matter before us. Certainly a must have. Cheers.</description>
		<content:encoded><![CDATA[<p>Flawless execution. As always, thank you. On another note, I find the Tondeur &amp; Winder book especially compelling. They are two very skilled developers who have a knack at getting to the very root of the subject matter before us. Certainly a must have. Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yogesh Agarwal</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-12866</link>
		<dc:creator>Yogesh Agarwal</dc:creator>
		<pubDate>Thu, 19 Nov 2009 10:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-12866</guid>
		<description>I had the same problem of image locking after sometime but it got fixed after applying the code mentioned by John.</description>
		<content:encoded><![CDATA[<p>I had the same problem of image locking after sometime but it got fixed after applying the code mentioned by John.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joni</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2577</link>
		<dc:creator>joni</dc:creator>
		<pubDate>Sat, 11 Jul 2009 02:19:07 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2577</guid>
		<description>hello again!
i&#039;ve tried what you said but it didn&#039;t work out.
the material doesn&#039;t tile correctly. in
i&#039;ve tried thre different alternatives:

if(triangle3D.uv0.v &gt;= 1) triangle3D.uv0.v = 0;

if(triangle3D.uv0.v &gt;= 1) triangle3D.uv0.v -= 1;

triangle3D.uv0.v = triangle3D.uv0.v % 1;

any suggestions?</description>
		<content:encoded><![CDATA[<p>hello again!<br />
i&#8217;ve tried what you said but it didn&#8217;t work out.<br />
the material doesn&#8217;t tile correctly. in<br />
i&#8217;ve tried thre different alternatives:</p>
<p>if(triangle3D.uv0.v &gt;= 1) triangle3D.uv0.v = 0;</p>
<p>if(triangle3D.uv0.v &gt;= 1) triangle3D.uv0.v -= 1;</p>
<p>triangle3D.uv0.v = triangle3D.uv0.v % 1;</p>
<p>any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Lindquist</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2566</link>
		<dc:creator>John Lindquist</dc:creator>
		<pubDate>Fri, 10 Jul 2009 14:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2566</guid>
		<description>Try something like this for each property:

triangle3D.uv0.v += .01;
if(triangle3D.uv0.v &gt; 1)
{
triangle3D.uv0.v = 0;
}</description>
		<content:encoded><![CDATA[<p>Try something like this for each property:</p>
<p>triangle3D.uv0.v += .01;<br />
if(triangle3D.uv0.v &gt; 1)<br />
{<br />
triangle3D.uv0.v = 0;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joni</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2565</link>
		<dc:creator>joni</dc:creator>
		<pubDate>Fri, 10 Jul 2009 14:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2565</guid>
		<description>as jb said, i&#039;m having the same problem.
i&#039;m scrolling a water texture on a plane. eventually the material will get &#039;corrupted&#039;, as if the uv mapping would be wrong or something.
i&#039;can send screenshot or code.
anybody know how to working around this problem?</description>
		<content:encoded><![CDATA[<p>as jb said, i&#8217;m having the same problem.<br />
i&#8217;m scrolling a water texture on a plane. eventually the material will get &#8216;corrupted&#8217;, as if the uv mapping would be wrong or something.<br />
i&#8217;can send screenshot or code.<br />
anybody know how to working around this problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Teresa</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2217</link>
		<dc:creator>Teresa</dc:creator>
		<pubDate>Wed, 10 Jun 2009 13:11:12 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2217</guid>
		<description>Hellooo !
I&#039;m working with augmented reality and i want to create a plane with a movie but i have a problem. could it be possible to send you the code?</description>
		<content:encoded><![CDATA[<p>Hellooo !<br />
I&#8217;m working with augmented reality and i want to create a plane with a movie but i have a problem. could it be possible to send you the code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jb</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2064</link>
		<dc:creator>jb</dc:creator>
		<pubDate>Mon, 25 May 2009 17:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2064</guid>
		<description>John, was doing the exact same the other day.
Noticed that eventually the image will lock.
change the triangle3D.uv0.v += .1;
and after a while you will see it lock up.</description>
		<content:encoded><![CDATA[<p>John, was doing the exact same the other day.<br />
Noticed that eventually the image will lock.<br />
change the triangle3D.uv0.v += .1;<br />
and after a while you will see it lock up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hendrik</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2052</link>
		<dc:creator>Hendrik</dc:creator>
		<pubDate>Mon, 25 May 2009 09:01:51 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2052</guid>
		<description>Cool! This might come in handy for a project I&#039;m working on right now.</description>
		<content:encoded><![CDATA[<p>Cool! This might come in handy for a project I&#8217;m working on right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Albi</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2046</link>
		<dc:creator>Albi</dc:creator>
		<pubDate>Sun, 24 May 2009 21:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2046</guid>
		<description>sweet! =) YES</description>
		<content:encoded><![CDATA[<p>sweet! =) YES</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matej</title>
		<link>http://pv3d.org/2009/05/23/moving-a-texture-inside-of-a-plane/comment-page-1/#comment-2045</link>
		<dc:creator>Matej</dc:creator>
		<pubDate>Sun, 24 May 2009 16:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://pv3d.org/?p=559#comment-2045</guid>
		<description>sweet! =)</description>
		<content:encoded><![CDATA[<p>sweet! =)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
