Package org.jwildfire.base

Examples of org.jwildfire.base.Preset


    //    String name = this.getClass().getSimpleName();
    //    System.out.println(name + ": " + ((double) (t1 - t0) / 1000.0) + "s");
  }

  public void applyPreset(String pPresetName) {
    Preset preset = getPresetByName(pPresetName);
    if (preset != null) {
      applyPreset(preset);
    }
  }
View Full Code Here


  protected void cleanupTransformation(WFImage pImg) {

  }

  public void applyPreset(String pPresetName, SimpleImage pImg) {
    Preset preset = getPresetByName(pPresetName);
    if (preset == null) {
      if (pImg != null) {
        initDefaultParams(pImg);
      }
    }
View Full Code Here

TOP

Related Classes of org.jwildfire.base.Preset

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.