To share the result of a simulation and provide it to any user it would be helpful, if the animation of a simulation could be exported as e.g., Movie or GIF.
This task is about elaborating this idea and how it will be implemented.
An idea is to provide the following functionality with simplay:
exportAnimation(exportOptions: ExportOptions): Promise<blob>;
interface ExportOptions {
format: "gif" | "mp4";
fps: number;
width: number;
height: number;
animationSpeed: number;
}
DoD:
To share the result of a simulation and provide it to any user it would be helpful, if the animation of a simulation could be exported as e.g., Movie or GIF.
This task is about elaborating this idea and how it will be implemented.
An idea is to provide the following functionality with
simplay:DoD: