show_to_page#
- anim_flipbook.show_to_page(p0: float) int #
Specify the ending page to which to run the flipbook animation.
This page value must not be less than the “anim_flipbook: show_from_page” value.- Args:
- p0:
‘page_value’ A page value which lies within the range of loaded pages
- Examples:
# # Preliminary flipbook animation of 21 time steps # ensight.anim_flipbook.begin_time_step(30) ensight.anim_flipbook.end_time_step(50) ensight.anim_flipbook.specify_time_as("step") ensight.anim_flipbook.load() ensight.anim_flipbook.run_type("auto") # # Reduce flipbook animation to 11 time steps # ensight.anim_flipbook.show_from_page(35) ensight.anim_flipbook.show_to_page(45)
- Returns:
zero on success, non-zero on error