[jgogears commit] r46 - trunk/jgogears/jgogears/engine

0 views
Skip to first unread message

codesite...@google.com

unread,
Mar 3, 2008, 9:20:32 PM3/3/08
to jgog...@googlegroups.com
Author: syeates
Date: Mon Mar 3 18:20:24 2008
New Revision: 46

Modified:
trunk/jgogears/jgogears/engine/VertexLineariser.java

Log:
fixed a stupid bug that made linearisations much too short

Modified: trunk/jgogears/jgogears/engine/VertexLineariser.java
==============================================================================
--- trunk/jgogears/jgogears/engine/VertexLineariser.java (original)
+++ trunk/jgogears/jgogears/engine/VertexLineariser.java Mon Mar 3
18:20:24 2008
@@ -96,7 +96,7 @@
* @see java.util.Iterator#hasNext()
*/
public boolean hasNext() {
- return this.offset * this.offset < SIZE * SIZE;
+ return this.offset < SIZE * SIZE;
}

/**

Reply all
Reply to author
Forward
0 new messages