Package org.imagearchive.lsm.toolbox.info.scaninfo

Examples of org.imagearchive.lsm.toolbox.info.scaninfo.Laser


      IJ.log("Lasers");
    Vector v = new Vector();
    while (tag.entry != 0x0FFFFFFFF) {
      tag = getScanInfoTag(stream);
      if (Laser.isLaser(tag.entry)) {
        Laser l = new Laser();
        while (tag.entry != 0x0FFFFFFFF) {
          tag = getScanInfoTag(stream);
          if (IJ.debugMode)
            IJ.log("Lasertag: " + Long.toHexString(tag.entry));
          if (tag.entry != 0x0FFFFFFFF)
View Full Code Here

TOP

Related Classes of org.imagearchive.lsm.toolbox.info.scaninfo.Laser

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.