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

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


    up = new FloatTriple(pUpX, pUpY, pUpZ);
    return this;
  }

  public CameraBuilder withFov(double pFov) {
    fov = new FloatSingle(pFov);
    return this;
  }
View Full Code Here


    fov = new FloatSingle(pFov);
    return this;
  }

  public CameraBuilder withAspect(double pAspect) {
    aspect = new FloatSingle(pAspect);
    return this;
  }
View Full Code Here

    sundir = new FloatTriple(pSundirX, pSundirY, pSundirZ);
    return this;
  }

  public SunSkyLightBuilder withTurbidity(double pTurbidity) {
    turbidity = new FloatSingle(pTurbidity);
    return this;
  }
View Full Code Here

    diff = new FloatTriple(pDiffX, pDiffY, pDiffZ);
    return this;
  }

  public ShaderBuilder withRefl(double pRefl) {
    refl = new FloatSingle(pRefl);
    return this;
  }
View Full Code Here

    color = new RGBColor(pR, pG, pB);
    return this;
  }

  public LightBuilder withPower(double pPower) {
    power = new FloatSingle(pPower);
    return this;
  }
View Full Code Here

TOP

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

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.