From: Luke H. <lh...@us...> - 2002-11-26 06:03:46
|
Update of /cvsroot/java-game-lib/LWJGL/examples/nehe/lesson06 In directory sc8-pr-cvs1:/tmp/cvs-serv10704 Modified Files: Lesson6.java Texture.java Log Message: Minor changes Index: Lesson6.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/examples/nehe/lesson06/Lesson6.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/examples/nehe/lesson06/Lesson6.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Lesson6.java 26 Nov 2002 05:45:40 -0000 1.2 +++ Lesson6.java 26 Nov 2002 06:03:44 -0000 1.3 @@ -225,11 +225,11 @@ gl.end(); /* rotate 15pps on the X Axis */ - xrot += frameTime * 15f ; + xrot += frameTime * 30f ; /* rotate 20pps on the Y Axis */ yrot += frameTime * 20f; /* rotate 10pps on the Z Axis */ - zrot += frameTime * 10f; + zrot += frameTime * 40f; return true; } Index: Texture.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/examples/nehe/lesson06/Texture.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/examples/nehe/lesson06/Texture.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Texture.java 25 Nov 2002 06:24:09 -0000 1.1 +++ Texture.java 26 Nov 2002 06:03:44 -0000 1.2 @@ -29,6 +29,8 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +package lesson06; + import java.nio.*; import java.awt.image.*; import java.awt.geom.*; |