Package org.geotools.referencing.piecewise

Examples of org.geotools.referencing.piecewise.PiecewiseTransform1DElement.transform()


                // in case everything went fine let's apply the
                // transform.
                //
                // //
                if (transform != null)
                  iterator.setSample(transform.transform(value));
                else {
                  // //
                  //
                  // if we did not find one let's try to use
                  // one of the nodata ones to fill the gaps,
View Full Code Here


  public double transform(double value) throws TransformException {
    initColorModel();
    PiecewiseTransform1DElement transform=(PiecewiseTransform1DElement) findDomainElement(value);
    if(transform!=null)
      return transform.transform(value);
    return this.preFilteringPiecewise.transform(value);
  }

  public Matrix derivative(DirectPosition point)
      throws MismatchedDimensionException, TransformException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.