Python command for setting plot window size

This commit is contained in:
Gaute Lindkvist
2019-10-16 15:46:31 +02:00
parent 4dcdc2a1ee
commit 3eaf933efc
5 changed files with 23 additions and 4 deletions

View File

@@ -8,8 +8,10 @@ import rips
# Load instance
resinsight = rips.Instance.find()
# Set window size
# Set window sizes
resinsight.set_main_window_size(width=800, height=500)
resinsight.set_plot_window_size(width=1000, height=1000)
# Retrieve first case
case = resinsight.project.cases()[0]