Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
IAH public
DeProj
Commits
d218404d
Commit
d218404d
authored
Jul 06, 2020
by
Jean-Yves TINEVEZ
Browse files
Plot 3rd euler angle in range 0 - 180.
parent
6dc23cc8
Changes
1
Show whitespace changes
Inline
Side-by-side
src/@deproj/add_plot_euler_gamma.m
View file @
d218404d
...
...
@@ -4,6 +4,10 @@ function hts = add_plot_euler_gamma( obj, ax )
epicells
=
obj
.
epicells
;
angles
=
vertcat
(
epicells
.
euler_angles
);
gammas
=
rad2deg
(
angles
(
:,
3
)
);
neg_gammas
=
gammas
<
0
;
gammas
(
neg_gammas
)
=
180
+
gammas
(
neg_gammas
);
hts
=
add_plot_variable
(
obj
,
gammas
,
ax
);
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment