Galaxy and glowing point visual improvements.
[sixth-3d-demos.git] / src / main / java / eu / svjatoslav / sixth / e3d / examples / PointCloudDemo.java
index 63d1b38..974ecc7 100644 (file)
@@ -9,8 +9,8 @@
 package eu.svjatoslav.sixth.e3d.examples;
 
 import eu.svjatoslav.sixth.e3d.geometry.Point3D;
-import eu.svjatoslav.sixth.e3d.math.Transform;
 import eu.svjatoslav.sixth.e3d.gui.ViewFrame;
+import eu.svjatoslav.sixth.e3d.math.Transform;
 import eu.svjatoslav.sixth.e3d.renderer.raster.ShapeCollection;
 import eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.Galaxy;
 
@@ -21,12 +21,12 @@ public class PointCloudDemo {
         final ViewFrame viewFrame = new ViewFrame();
 
         final ShapeCollection geometryCollection = viewFrame.getViewPanel()
-                .getContext().getRootShapeCollection();
+                .getRootShapeCollection();
 
         Transform transform = new Transform(new Point3D(0, -1000, 1000), 0, 0);
 
         // add galaxy
-        geometryCollection.addShape(new Galaxy(1000, 3, 10000, transform));
+        geometryCollection.addShape(new Galaxy(500, 3, 10000, transform));
 
     }
 }