Interface ISimulatorUI
- All Known Implementing Classes:
ControllerForFxml
public interface ISimulatorUI
The ISimulatorUI interface provides methods for the simulator user interface.
-
Method Summary
Modifier and TypeMethodDescriptionlonggetDelay()Returns the delay between simulation steps.doublegetTime()Returns the current simulation time.Returns the visualization of the simulation.voidsetEndTime(double time) Sets the simulation end time.
-
Method Details
-
getTime
double getTime()Returns the current simulation time. -
getDelay
long getDelay()Returns the delay between simulation steps. -
setEndTime
void setEndTime(double time) Sets the simulation end time.- Parameters:
time- the simulation end time
-
getVisualization
IVisualization getVisualization()Returns the visualization of the simulation.
-