From 1fd0773e945dc21967104c420ce7829d3679e5ff Mon Sep 17 00:00:00 2001 From: Svjatoslav Agejenko Date: Tue, 10 Jul 2018 18:39:59 +0300 Subject: [PATCH] Refactoring. --- .../eu/svjatoslav/sixth/e3d/examples/RandomPolygonsDemo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/examples/RandomPolygonsDemo.java b/src/main/java/eu/svjatoslav/sixth/e3d/examples/RandomPolygonsDemo.java index 24d0d2f..5ff3bfd 100755 --- a/src/main/java/eu/svjatoslav/sixth/e3d/examples/RandomPolygonsDemo.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/examples/RandomPolygonsDemo.java @@ -18,8 +18,8 @@ import eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.wireframe.Grid3D public class RandomPolygonsDemo { - public static final double POLYGON_AVERAGE_SIZE = 130; - public static final int POLYGON_COUNT = 10000; + private static final double POLYGON_AVERAGE_SIZE = 130; + private static final int POLYGON_COUNT = 1000; private static void addRandomPolygon(final ShapeCollection geometryCollection) { final Point3D polygonLocation = getRandomPoint(1000); -- 2.20.1