<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="/feed/bypass/styles/feed.css" media="screen"?>
<?xml-stylesheet type="text/xsl" href="/feed/bypass/styles/feed.xsl"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">

	<channel>
	  <!-- main channel info -->
        <title>joglblogl</title>
        <link>http://jogl.yuku.com/directory</link>
        <description>
        <![CDATA[ This is a test ]]>
        </description>

		<!-- optional elements -->
		<language>en-us</language>
		<copyright>Copyright 2006, Yuku</copyright>
		<managingEditor>feeds@yuku.com (FeedMaster)</managingEditor>
		<webMaster>webmaster@yuku.com (WebMaster)</webMaster>
		<!-- note: dates need to be RFC 822 formated "Sat, 07 Sep 2002 00:00:01 GMT" -->
		<pubDate>Sun, 08 Nov 2009 00:00:00 GMT</pubDate>
		<lastBuildDate>Mon, 20 Oct 2008 08:22:32 GMT</lastBuildDate>
		<generator>Yuku Feeds 1.0</generator>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<!-- <cloud domain="rpc.yuku.com" port="80" path="/RPC2" registerProcedure="pingMe" protocol="soap"/>-->
		<ttl>60</ttl>
		<!-- feed image -->
		<image>
			<title>Yuku</title>
			<url>http://static.yuku.com//feed/bypass/images/button-yuku.png</url>
			<link>http://jogl.yuku.com/directory</link>
			<description>Yuku - free hosted forums and profiles</description>
			<width>88</width>
			<height>31</height>
		</image>
		<rating>
		{pics-1.1 &quot;http://www.icra.org/ratingsv02.html&quot; l gen true for &quot;http://yuku.com&quot; r (nz 1 vz 1 lz 1 oz 1 cz 1 ) &quot;http://www.rsac.org/ratingsv01.html&quot; l gen true for &quot;http://yuku.com&quot; r (n 0 s 0 v 0 l 0 ))
		</rating>
		<textInput>
			<title>Search</title>
			<description>Search Domain</description>
			<name>q</name>
			<link>http://yuku.com/search/direct/</link>
		</textInput>
		<!-- skip
		<skipHours>
			<hour>23</hour>
		</skipHours>
		<skipDays>
			<day>Monday</day>
			<day>Wednesday</day>
			<day>Friday</day>
		</skipDays>-->
		<!-- extensions -->


		<!-- channel items -->
		<!-- descriptions should be shorter than 500 char to be polite -->
		<!-- html shoud be stripped or escaped -->
		<item>
			<title><![CDATA[ 2D projection ]]></title>
			<link>http://jogl.yuku.com/topic/22/t/2D-projection.html</link>
			<description><![CDATA[ This is tricky. The basis is
<br>
<br>
glu.gluOrtho2D(0, drawable.getWidth(), 0, drawable.getHeight());
<br>
<br>
which sets things up in two ways - 1. to use an orthographic projection, as in engineering drawings, not perspective, and 2. in 2D only so that z co-ords are
ignored. The above call enables you to use co-ords with (0,0) at the bottom left of the window and top right at whatever (pixel) co-ords the corner has.
<br>
<br>
But I think (?) this changes both the projection and modelview... ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/22</guid>
			<pubDate>Mon, 20 Oct 2008 08:22:32 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Using TextRenderer ]]></title>
			<link>http://jogl.yuku.com/topic/21/t/Using-TextRenderer.html</link>
			<description><![CDATA[ which is in
<br>
<pre>
<strong>com.sun.opengl.util.j2d.TextRenderer</strong>

see the <a title="API" target="_blank" href="http://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/util/j2d/TextRenderer.html">API</a>. For example
</pre>Font font = new Font(&quot;Verdana&quot;, Font.PLAIN, 14);
<br>
TextRenderer t = new TextRenderer(font, true, true);
<br>
t.beginRendering(640,480,false);
<br>
t.draw(&quot;Hello world&quot;, 20,20);
<br>
t.endRendering();
<br>
t.flush(); ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/21</guid>
			<pubDate>Mon, 20 Oct 2008 08:13:19 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ The modelview and projection matrices ]]></title>
			<link>http://jogl.yuku.com/topic/20/t/The-modelview-and-projection-matrices.html</link>
			<description><![CDATA[ are <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/rotation.htm"></a><a title="here" href="http://www.waltermilner.com/joglblogl/matrices.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/20</guid>
			<pubDate>Mon, 20 Oct 2008 07:55:08 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Rotations ]]></title>
			<link>http://jogl.yuku.com/topic/19/t/Rotations.html</link>
			<description><![CDATA[ example is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/rotation.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/19</guid>
			<pubDate>Mon, 20 Oct 2008 07:47:41 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Basic lighting and materials ]]></title>
			<link>http://jogl.yuku.com/topic/18/t/Basic-lighting-and-materials.html</link>
			<description><![CDATA[ is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/lighting.htm">here</a>
<br>
<img src="http://www.waltermilner.com/joglblogl/lighting5.jpg" alt="image">
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/18</guid>
			<pubDate>Mon, 20 Oct 2008 07:38:38 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Simple sky box ]]></title>
			<link>http://jogl.yuku.com/topic/17/t/Simple-sky-box.html</link>
			<description><![CDATA[ is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/skybox.htm">here</a>
<br>
<img src="http://www.waltermilner.com/joglblogl/skybox.jpg" alt="image">
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/17</guid>
			<pubDate>Mon, 20 Oct 2008 07:36:08 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Simple text using glutStrokeCharacter ]]></title>
			<link>http://jogl.yuku.com/topic/16/t/Simple-text-using-glutStrokeCharacter.html</link>
			<description><![CDATA[ is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/simpleText.htm">here</a>
<br>
<img src="http://www.waltermilner.com/joglblogl/simpleText.jpg" alt="image">
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/16</guid>
			<pubDate>Mon, 20 Oct 2008 07:31:58 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Display list example ( and fps measurement) ]]></title>
			<link>http://jogl.yuku.com/topic/15/t/Display-list-example-and-fps-measurement-.html</link>
			<description><![CDATA[ is <a title="here " target="_blank" href="http://www.waltermilner.com/joglblogl/displayLists.htm">here</a>
<br>
<img src="http://www.waltermilner.com/joglblogl/dl2.jpg" alt="image">
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/15</guid>
			<pubDate>Mon, 20 Oct 2008 07:30:07 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Using vectors ]]></title>
			<link>http://jogl.yuku.com/topic/14/t/Using-vectors.html</link>
			<description><![CDATA[ to move the camera &#39;forward&#39; is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/vectors.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/14</guid>
			<pubDate>Mon, 20 Oct 2008 07:28:16 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Using the keyboard to move the camera ]]></title>
			<link>http://jogl.yuku.com/topic/13/t/Using-the-keyboard-to-move-the-camera.html</link>
			<description><![CDATA[ is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/keyboard.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/13</guid>
			<pubDate>Mon, 20 Oct 2008 07:25:53 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Blending and textures ]]></title>
			<link>http://jogl.yuku.com/topic/12/t/Blending-and-textures.html</link>
			<description><![CDATA[ is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/texblend.htm">here</a>
<br>
<img src="http://www.waltermilner.com/joglblogl/texblend4.jpg" alt="image">
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/12</guid>
			<pubDate>Mon, 20 Oct 2008 07:22:08 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Textures by reading a TGA file ]]></title>
			<link>http://jogl.yuku.com/topic/11/t/Textures-by-reading-a-TGA-file.html</link>
			<description><![CDATA[ is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/texture2.htm">here</a>
<br>
<img src="http://www.waltermilner.com/joglblogl/textures2-1.jpg" alt="image">
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/11</guid>
			<pubDate>Mon, 20 Oct 2008 07:18:14 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Texture created programmatically ]]></title>
			<link>http://jogl.yuku.com/topic/10/t/Texture-created-programmatically.html</link>
			<description><![CDATA[ Creating and using a texture programmatically, is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/textures1.htm">here</a>
<br>
<img src="http://www.waltermilner.com/joglblogl/texture1.jpg" alt="image">
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/10</guid>
			<pubDate>Mon, 20 Oct 2008 07:16:18 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Movement ]]></title>
			<link>http://jogl.yuku.com/topic/9/t/Movement.html</link>
			<description><![CDATA[ As in NeHe lesson 4, is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/nehe4.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/9</guid>
			<pubDate>Mon, 20 Oct 2008 07:14:11 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Using colour ]]></title>
			<link>http://jogl.yuku.com/topic/8/t/Using-colour.html</link>
			<description><![CDATA[ as in NeHe lesson 3, is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/nehe3.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/8</guid>
			<pubDate>Mon, 20 Oct 2008 07:11:20 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ Drawing a triangle ]]></title>
			<link>http://jogl.yuku.com/topic/7/t/Drawing-a-triangle.html</link>
			<description><![CDATA[ as in NeHe lesson 2, is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/nehe2.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/7</guid>
			<pubDate>Mon, 20 Oct 2008 07:09:36 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ A basic frame ]]></title>
			<link>http://jogl.yuku.com/topic/6/t/A-basic-frame.html</link>
			<description><![CDATA[ As in NeHe lesson 1, is <a title="here" target="_blank" href="http://www.waltermilner.com/joglblogl/nehe1.htm">here</a>
<br> ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/6</guid>
			<pubDate>Mon, 20 Oct 2008 07:08:20 GMT</pubDate>
			<!-- extensions -->

		</item>
		<item>
			<title><![CDATA[ JOGL in NetBeans ]]></title>
			<link>http://jogl.yuku.com/topic/5/t/JOGL-in-NetBeans.html</link>
			<description><![CDATA[ I would have liked to have used JOGL from Eclipse, but AFAICS there is currently no JOGL Eclipse plugin, and I found conflicting advice on how to
download/install what you need by hand. So I went with the Netbeans plugin. That&#39;s here : <a title="NetBeans plugi" target="_blank" href="https://netbeans-opengl-pack.dev.java.net/"></a><a href="https://netbeans-opengl-pack.dev.java.net/">https://netbeans-opengl-pack.dev.java.net/</a> Having downloaded that somewhere, then in NetBeans you go... ]]></description>

			<!-- optional elements -->
			<author>feeds@yuku.com (waltermilner)</author>
			<guid isPermaLink="true">http://jogl.yuku.com/topic/5</guid>
			<pubDate>Sun, 19 Oct 2008 02:05:11 GMT</pubDate>
			<!-- extensions -->

		</item>
    <!-- end items -->

  </channel>
</rss>