I'm working on a procedural generation of a continuous world.
Recently I've been advised to use height map combinations to apply some constraints on my landscape.
The next step is connecting two procedurally generated pieces to each other so that the transition would be smooth.
More accurately, it's all about generating the next piece based on the previous.
I'm wondering what is the best way to do that (whether by combining height maps or in other way).
If I would have been using Diamond Square or Mid Displacement or any enclosing points based algorithm to generate the heights,
I would think about assigning the first piece edge values to the second piece edge and use them as "random" values for these points.
In this way the transition would be smooth because all the rest of points in the second piece already take in account the edge points that are taken from the first piece.
Unfortunately (or fortunately) I'm using a Simplex noise algorithm to generate the heights, and as you know is a gradient based algorithm.
So what would you recommend?