When you create a simulation a message is sent to the Lexset server. Lexset will return all the data you need to your object so that you can track your simulations and store that in your object.
firstSim.createSimulation()
You can access your simulation ID, dataset ID, or user ID from your simulation object.
Once all your placement rules are uploaded you can start your simulation.
firstSim.startSimulation()
This is what your final script should look like.
import lexsetAPI as lexsettoken =<YOURBEARERTOKEN>simPath ="./multiroom_tutorial_changeCam.yaml"firstSim = lexset.simulation(token,simPath,<NUMBEROFIMAGESYOUWANTTOGENERATE>)firstSim.createSimulation()firstSim.startSimulation()
When your simulation finishes and your data is ready you can download the data with the following command.
This is an example of what the output from your simulation should look like. You will note that the camera is lower to the ground and the FOV is much wider, resulting in more distortion and viewing more of the space.
Sample image from the simulation with increased FOV and camera lower to the ground.