Package ij.gui

Examples of ij.gui.Line


                // Creation de 2 lignes

                // Horizontal line of the cross
                // Calculation of x origine
                int origine = x - width / 2;
                roi1 = new Line(origine, y, origine + width, y);

                // Vertical line of the cross
                origine = y - height / 2;
                roi2 = new Line(x, origine, x, origine + height);
                break;
            case TEXT:
                roi = new TextRoi(x, y, imagePlus);
                break;
            case POINT:
View Full Code Here

TOP

Related Classes of ij.gui.Line

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.