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

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


    type = pType;
    return this;
  }

  public CameraBuilder withEye(double pEyeX, double pEyeY, double pEyeZ) {
    eye = new FloatTriple(pEyeX, pEyeY, pEyeZ);
    return this;
  }
View Full Code Here


    eye = new FloatTriple(pEyeX, pEyeY, pEyeZ);
    return this;
  }

  public CameraBuilder withTarget(double pTargetX, double pTargetY, double pTargetZ) {
    target = new FloatTriple(pTargetX, pTargetY, pTargetZ);
    return this;
  }
View Full Code Here

    target = new FloatTriple(pTargetX, pTargetY, pTargetZ);
    return this;
  }

  public CameraBuilder withUp(double pUpX, double pUpY, double pUpZ) {
    up = new FloatTriple(pUpX, pUpY, pUpZ);
    return this;
  }
View Full Code Here

  public SceneBuilder close() {
    return parent;
  }

  public SunSkyLightBuilder withUp(double pUpX, double pUpY, double pUpZ) {
    up = new FloatTriple(pUpX, pUpY, pUpZ);
    return this;
  }
View Full Code Here

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

  public SunSkyLightBuilder withEast(double pEastX, double pEastY, double pEastZ) {
    east = new FloatTriple(pEastX, pEastY, pEastZ);
    return this;
  }
View Full Code Here

    east = new FloatTriple(pEastX, pEastY, pEastZ);
    return this;
  }

  public SunSkyLightBuilder withSundir(double pSundirX, double pSundirY, double pSundirZ) {
    sundir = new FloatTriple(pSundirX, pSundirY, pSundirZ);
    return this;
  }
View Full Code Here

    type = pType;
    return this;
  }

  public ShaderBuilder withDiff(double pDiffX, double pDiffY, double pDiffZ) {
    diff = new FloatTriple(pDiffX, pDiffY, pDiffZ);
    return this;
  }
View Full Code Here

    power = new FloatSingle(pPower);
    return this;
  }

  public LightBuilder withP(double pPX, double pPY, double pPZ) {
    p = new FloatTriple(pPX, pPY, pPZ);
    return this;
  }
View Full Code Here

TOP

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

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.