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
phantom = ... phantom_view = @view(phantom[p]) phantom_view.param .= 0.0 @test phantom_view.param == phantom[p].param
EDIT 2025/12/01: This is more difficult to implement with the motion field, which is why this:
motion
@view(phantom[1:100]).motion = Translate(0.0, 0.0, 0.1, TimeRange(0.0, 1.0))
Does not work. What needs to be done in that case is:
phantom.motion = Translate(0.0, 0.0, 0.1, TimeRange(0.0, 1.0), SpinRange(1:100))
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
EDIT 2025/12/01:
This is more difficult to implement with the
motion
field, which is why this:Does not work. What needs to be done in that case is:
The text was updated successfully, but these errors were encountered: