# HG changeset patch # User e095732 # Date 1359881366 -32400 # Node ID 5e6d40908c6093c4ebc78f64c3411b3a6dab9e29 # Parent 3458bde834d3d0e652020542b19a641fde455dd4 delete bug diff -r 3458bde834d3 -r 5e6d40908c60 fxml/aquarium.fxml --- a/fxml/aquarium.fxml Sat Feb 02 02:24:05 2013 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff -r 3458bde834d3 -r 5e6d40908c60 src/alice/test/topology/aquarium/fx/Aquarium.java --- a/src/alice/test/topology/aquarium/fx/Aquarium.java Sat Feb 02 02:24:05 2013 +0900 +++ b/src/alice/test/topology/aquarium/fx/Aquarium.java Sun Feb 03 17:49:26 2013 +0900 @@ -48,10 +48,6 @@ new AddObject(this); } - - public static void main(String[] args) { - launch(args); - } public void run(){ launch(); diff -r 3458bde834d3 -r 5e6d40908c60 src/alice/test/topology/aquarium/fx/SetTranslation.java --- a/src/alice/test/topology/aquarium/fx/SetTranslation.java Sat Feb 02 02:24:05 2013 +0900 +++ b/src/alice/test/topology/aquarium/fx/SetTranslation.java Sun Feb 03 17:49:26 2013 +0900 @@ -33,8 +33,9 @@ public void run() { int startX = data2.asInteger(); int width = data3.asInteger(); + System.out.println(data2.val); FishData fd = data1.asClass(FishData.class); - if (startX - + diff -r 3458bde834d3 -r 5e6d40908c60 src/aquarium/test/local/StartCodeSegment.java --- a/src/aquarium/test/local/StartCodeSegment.java Sat Feb 02 02:24:05 2013 +0900 +++ b/src/aquarium/test/local/StartCodeSegment.java Sun Feb 03 17:49:26 2013 +0900 @@ -9,6 +9,8 @@ @Override public void run() { ods.put("local", "objCnt", 5); + ods.put("local", "startX", 0); + ods.put("local", "width", 800); Aquarium aqua = new Aquarium(); aqua.run(); }