ver 3.15
Compiled with JDK 13.0.1
This release fixes one major issue and two minor issues:
-
ver 3.14 and older versions had continuous flickering issues as a result of an overly simplistic graphics painting system. With the introduction of a double buffer painting system, "Tester.java" no longer causes any graphics flickering.
-
An issue has been discovered where the number of AABBs displayed in the title bar maxes out at "32767" even though there may be more than this in the simulation. This issue was due to the variable type being a short integer where the largest possible decimal value is limited to "32767". The issue has been resolved by changing the type from "short" to "int".
-
The window in "Tester.java" is no longer resizable. Resizing the window was a useless action given that the dimensions of the simulator's drawing canvas are not scalable.