changed boat speed to a lower value

This commit is contained in:
Peter
2017-03-30 14:45:33 +13:00
parent 32109e8565
commit f8d3f53158
6 changed files with 7 additions and 155 deletions
@@ -150,7 +150,7 @@ public class CanvasController {
*/
private void drawWake(GraphicsContext gc, double x, double y, double speed, Color color, double heading){
double angle = Math.toRadians(heading);
speed = speed * 0.5; // Half the size of the wake
speed = speed * 10;
Point newP = new Point(0, speed);
newP.rotate(angle);