bug fix for the 2D engine

This commit is contained in:
Antonin Boyon
2021-03-16 15:18:00 +01:00
parent 6371082665
commit 562f366a2b
4 changed files with 2 additions and 7 deletions

View File

@@ -167,11 +167,6 @@ public class DrawHelper {
gl.glVertex2f(x, y);
gl.glVertex2f(x + (echelle * newX), y + (echelle * newY));
gl.glEnd();
/* System.out.println("X : " +(x + (echelle * newX)));
System.out.println("Y : " +(y + (echelle * newY)));
System.out.println("angle : " +angle);
System.out.println("newX : " +newX);
System.out.println("newY : " +newY);*/
}
}