Package org.jwildfire.create.tina.meshgen.sunflow.base

Examples of org.jwildfire.create.tina.meshgen.sunflow.base.IntPair


  public ImageBuilder(SceneBuilder pParent) {
    parent = pParent;
  }

  public ImageBuilder withResolution(int pWidth, int pHeight) {
    resolution = new IntPair(pWidth, pHeight);
    return this;
  }
View Full Code Here


    resolution = new IntPair(pWidth, pHeight);
    return this;
  }

  public ImageBuilder withAa(int pAa1, int pAa2) {
    aa = new IntPair(pAa1, pAa2);
    return this;
  }
View Full Code Here

TOP

Related Classes of org.jwildfire.create.tina.meshgen.sunflow.base.IntPair

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.