Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
imagej-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
imagej-elphel
Commits
98b1b93b
Commit
98b1b93b
authored
Sep 10, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix
parent
e71ca5a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Aberration_Calibration.java
src/main/java/Aberration_Calibration.java
+3
-2
No files found.
src/main/java/Aberration_Calibration.java
View file @
98b1b93b
...
...
@@ -8924,8 +8924,9 @@ if (MORE_BUTTONS) {
gd
.
addNumericField
(
"Motor 3"
,
newMotors
[
2
],
0
,
5
,
"steps ("
+
currentMotors
[
2
]+
")"
);
gd
.
addMessage
(
"Suggested rotation of the top screws, use if motor positions are out of limits - outside of +/-25,000"
);
if
(
manualScrewsCW
!=
null
)
for
(
int
i
=
0
;
i
<
manualScrewsCW
.
length
;
i
++){
if
(
manualScrewsCW
[
i
]>=
0
)
gd
.
addMessage
(
"Screw # "
+(
i
+
1
)+
" "
+
IJ
.
d2s
(
manualScrewsCW
[
i
],
3
)+
" (CW)"
);
else
gd
.
addMessage
(
"Screw # "
+(
i
+
1
)+
" "
+
IJ
.
d2s
(
manualScrewsCW
[
i
],
3
)+
" (CCW)"
);
double
deg
=
360
*
Math
.
abs
(
manualScrewsCW
[
i
]);
if
(
manualScrewsCW
[
i
]>=
0
)
gd
.
addMessage
(
"Screw # "
+(
i
+
1
)+
" "
+
IJ
.
d2s
(
manualScrewsCW
[
i
],
3
)+
" ("
+
IJ
.
d2s
(
deg
,
0
)+
"deg CW)"
);
else
gd
.
addMessage
(
"Screw # "
+(
i
+
1
)+
" "
+
IJ
.
d2s
(
manualScrewsCW
[
i
],
3
)+
" ("
+
IJ
.
d2s
(
deg
,
0
)+
"deg CCW)"
);
}
gd
.
addNumericField
(
"Scale movement"
,
scaleMovement
,
3
,
5
,
"x"
);
gd
.
addCheckbox
(
"Recalculate and apply parallel move only"
,
parallelMove
);
// should be false after manual movement
...
...
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