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);
}