mirror of
https://github.com/opelly27/Java-N-Body-Simulation.git
synced 2026-05-20 01:37:36 +00:00
.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
public class SpaceTaskHandaler implements Runnable {
|
||||
Space state;
|
||||
public SpaceTaskHandaler(Space state){
|
||||
state = this.state;
|
||||
}
|
||||
public static void main(String[] args){
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
for(int i = 0; i < this.state.bodies.length; i ++){
|
||||
this.state.bodies[i].calcNetForce(this.state.bodies);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user