Coordinate system #367
-
Hello RFEM community, |
Beta Was this translation helpful? Give feedback.
Answered by
heetrojivadiya
May 14, 2024
Replies: 1 comment 1 reply
-
Hey @bhnizar, Thank you for reaching out to us. Yes, it is possible with from RFEM.initModel import Model
from RFEM.enums import GlobalAxesOrientationType, LocalAxesOrientationType
from RFEM.baseSettings import BaseSettings
Model(True, 'Demo1')
BaseSettings(global_axes_orientation=GlobalAxesOrientationType.E_GLOBAL_AXES_ORIENTATION_ZUP, local_axes_orientation=LocalAxesOrientationType.E_LOCAL_AXES_ORIENTATION_ZUP) I hope this will work for you. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
heetrojivadiya
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @bhnizar,
Thank you for reaching out to us. Yes, it is possible with
BaseSettings()
.I hope this will work for you.