Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
vEXP
Commits
927c2de2
Commit
927c2de2
authored
Oct 25, 2021
by
legoc
Browse files
Added test on hklLine and energyLine
parent
f2de375b
Changes
1
Hide whitespace changes
Inline
Side-by-side
js/client/views/3D/reciprocal/trajectory-view.js
View file @
927c2de2
...
...
@@ -227,9 +227,13 @@ class TrajectoryView3D extends View3D {
for
(
let
id
in
this
.
_trajectoryLines
)
{
// Update the lines
let
hklLine
=
this
.
_trajectoryLines
[
id
].
hkl
;
hklLine
.
updateLine
();
if
(
hklLine
!==
null
)
{
hklLine
.
updateLine
();
}
let
energyLine
=
this
.
_trajectoryLines
[
id
].
energy
;
energyLine
.
updateLine
();
if
(
energyLine
!==
null
)
{
energyLine
.
updateLine
();
}
}
}
...
...
Write
Preview
Markdown
is supported
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