Package ca.eandb.jmist.framework.painter

Examples of ca.eandb.jmist.framework.painter.ProductPainter


    private Painter getPainter(String name) throws IOException {
      Spectrum color = getColor(name);
      if (maps.containsKey(name)) {
        File file = new File(directory, maps.get(name));
        return new ProductPainter(color, new Texture2Painter(new RasterTexture2(file)));
      }
      return new UniformPainter(color);
    }
View Full Code Here

TOP

Related Classes of ca.eandb.jmist.framework.painter.ProductPainter

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.