Package de.fhpotsdam.unfolding.texture

Examples of de.fhpotsdam.unfolding.texture.TextureDistorter


  public DistortedGLGraphicsMapDisplay(PApplet papplet, AbstractMapProvider provider, float offsetX, float offsetY,
      float width, float height) {
    super(papplet, provider, null, offsetX, offsetY, width, height);

    distorter = new LinearInterpolationDistorter(width / 2, height / 2);
    textureDistorter = new TextureDistorter(papplet, width, height, 10);
    textureDistorter.setDistorter(distorter);
  }
View Full Code Here


  public DistortedGLGraphicsMapDisplay(PApplet papplet, AbstractMapProvider provider, float offsetX, float offsetY,
      float width, float height, Distorter distorter) {
    super(papplet, provider, null, offsetX, offsetY, width, height);

    this.distorter = distorter;
    textureDistorter = new TextureDistorter(papplet, width, height, 10);
    textureDistorter.setDistorter(distorter);
  }
View Full Code Here

TOP

Related Classes of de.fhpotsdam.unfolding.texture.TextureDistorter

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.