java.awt.geom.Line2D.Double Java Examples
The following examples show how to use
java.awt.geom.Line2D.Double.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: IcyImager.java From DeconvolutionLab2 with GNU General Public License v3.0 | 4 votes |
@Override public void append(ContainerImage container, RealSignal signal, String title, Type type) { append(container, signal, title, type, new ArrayList<Line2D.Double>()); }
Example #2
Source File: IcyImager.java From DeconvolutionLab2 with GNU General Public License v3.0 | 4 votes |
@Override public void append(ContainerImage container, RealSignal signal, String title, Type type, ArrayList<Line2D.Double> overlayLines) { // TODO Auto-generated method stub }
Example #3
Source File: IcyImager.java From DeconvolutionLab2 with GNU General Public License v3.0 | 4 votes |
@Override public void show(RealSignal signal, String title, Type type, int z, ArrayList<Double> overlayLines) { Sequence sequence = build(signal, type); sequence.setName(title); Icy.getMainInterface().addSequence(sequence); }