Uses of Class
nbody.Body
Package | Description |
---|---|
gui |
Description : Package contenant les classes pour instancier
l'interface graphique afin de pouvoir visualiser la simulation.
|
nbody |
Description : Package contenant des classes pour instancier des
corps.
|
-
Uses of Body in gui
Fields in gui declared as Body Modifier and Type Field Description private Body
BodyDialog. body
Corps à modifier ou à créer.Methods in gui that return Body Modifier and Type Method Description Body
BodyDialog. getBody()
Permet de récupérer le corps stocké.Methods in gui that return types with arguments of type Body Modifier and Type Method Description private javafx.scene.control.ListView<Body>
SimulationScene. createBodyList()
Methods in gui with parameters of type Body Modifier and Type Method Description void
BodyListCell. updateItem(Body item, boolean empty)
Permet de mettre à jour un item de la liste (ou d'en ajouter un).Method parameters in gui with type arguments of type Body Modifier and Type Method Description BodyListCell
BodyFactory. call(javafx.scene.control.ListView<Body> listView)
Permet de créer la liste des cellules (liste des corps de la simulation).Constructors in gui with parameters of type Body Constructor Description BodyDialog(java.lang.String title, Body bodyToChange)
Constructeur de la classe. -
Uses of Body in nbody
Methods in nbody that return Body Modifier and Type Method Description Body
NBodySimulator. search(java.lang.String name)
Permet de retrouver un objet dans la simulation.Methods in nbody with parameters of type Body Modifier and Type Method Description void
NBodySimulator. addBodies(Body... bodiesToAdd)
Permet d'ajouter un objet à la liste des objets appartenant au simulateur.void
NBodySimulator. addBody(Body bodyToAdd)
Permet d'ajouter un objet à la liste des objets appartenant au simulateur.javafx.scene.shape.Sphere
NBodySimulator. removeBody(Body instance)
Permet de supprimer un corps de la simulation.