Mercurial > hg > Database > Alice
annotate src/main/java/alice/test/topology/aquarium/ResetFish.java @ 547:e91a574b69de dispose
remove index
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 18 Aug 2015 16:15:17 +0900 |
parents | aefbe41fcf12 |
children |
rev | line source |
---|---|
345 | 1 package alice.test.topology.aquarium; |
2 | |
3 import alice.codesegment.CodeSegment; | |
4 | |
5 public class ResetFish extends CodeSegment { | |
419 | 6 |
7 public ResetFish(){} | |
345 | 8 |
419 | 9 @Override |
10 public void run() { | |
11 FishPoint fp = new FishPoint(0.0f,0.0f,0.0f); | |
12 ods.update("fish", fp); | |
13 | |
14 } | |
345 | 15 |
16 } |