Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed Aug 26, 2023
1 parent c51cd16 commit ea1cbde
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ public static void main(String[] args) {
public void start(Stage primaryStage) {

// setUserAgentStylesheet(STYLESHEET_MODENA);
System.out.println("start()");

root.getChildren().add(world);
root.setDepthTest(DepthTest.ENABLE);
Expand Down Expand Up @@ -147,7 +146,6 @@ public void start(Stage primaryStage) {
}

private void buildAxes() {
System.out.println("buildAxes()");
final PhongMaterial redMaterial = new PhongMaterial();
redMaterial.setDiffuseColor(Color.DARKRED);
redMaterial.setSpecularColor(Color.RED);
Expand All @@ -173,11 +171,7 @@ private void buildAxes() {
world.getChildren().addAll(axisGroup);
}

// private void buildScene() {
// root.getChildren().add(world);
// }
private void buildCamera() {
System.out.println("buildCamera()");
root.getChildren().add(cameraXform);
cameraXform.getChildren().add(cameraXform2);
cameraXform2.getChildren().add(cameraXform3);
Expand All @@ -195,7 +189,6 @@ private void buildMolecule() {
final var random = new Random(666);
final var tet = new Sentinel(random);
Point3f ourPoints[] = Vertex.getRandomPoints(random, 200, 10.0f, false);
// Point3f ourPoints[] = TestCases.getGrid();
for (var v : ourPoints) {
tet.track(v);
}
Expand Down Expand Up @@ -275,5 +268,4 @@ public void handle(MouseEvent me) {
}
});
}

}

0 comments on commit ea1cbde

Please sign in to comment.