We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include EulerAngles class in mrsimulator
EulerAngles
class EulerAngles: alpha: float beta: float gamma: float
Define a method __add__ to add two Euler angle.
__add__
e1 = EulerAngles(alpha=0.5, beta=3.14, gamma=1.14) e2 = EulerAngles(alpha=1.2, beta=1.23, gamma=-2.0) e3 = e1 + e2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Include
EulerAngles
class in mrsimulatorDefine a method
__add__
to add two Euler angle.The text was updated successfully, but these errors were encountered: