-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support for adding colomaps and the RdBu maps. Also removed bugs.
- Loading branch information
1 parent
eb6cbb2
commit b2a2626
Showing
9 changed files
with
185 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,6 +94,7 @@ public PositionLabel(String text, ImageCanvas C1, ImageCanvas C2, ImageCanvas C3 | |
MyText.setFont(new Font(data3d.FontType, Font.PLAIN, data3d.FontSize)); | ||
MyText.setEditable(false); | ||
PixDisplay = new PixelDisplay(data, c1, c2, c3); | ||
|
||
nf = java.text.NumberFormat.getNumberInstance(Locale.US); | ||
nf.setMaximumFractionDigits(6); | ||
// nf.setMinimumIntegerDigits(7); | ||
|
@@ -185,7 +186,12 @@ void TextDisplayDialog() { // allows the user to define the units and scales | |
|
||
void Help() { | ||
// javax.swing.JOptionPane.showMessageDialog(applet, | ||
String newtext = "Java 5D image viewer, Version V" + View5D_.VersionString + // serialVersionUID + "." + View5D_.serialSubVersionUID + "." + View5D_.serialSubSubVersionUID + "" + | ||
String Version; | ||
if ((data3d.applet instanceof View5D)) | ||
Version = ((View5D) data3d.applet).getVersion(); | ||
else | ||
Version = ((View5D_) data3d.applet).getVersion(); | ||
String newtext = "Java 5D image viewer, Version V" + Version + // serialVersionUID + "." + View5D_.serialSubVersionUID + "." + View5D_.serialSubSubVersionUID + "" + | ||
" by Rainer Heintzmann\nLeibniz-IPHT and Friedrich Schiller University of Jena, Germany ([email protected])\n\n" + | ||
"NAVIGATION: Right-click for menu and context menus (individual for panels, colopmap list and text panel)\nUse mouse click for changing slices or cursor keys (arrows) and next/previous page keys.\n" + | ||
"Zoom in and out via the mouse wheel. Press `shift` and use the mouse wheel to change the LUT gamma value. `shift middle mouse click resets gamma to one`\n +" + | ||
|
Oops, something went wrong.