Re: How to create a 2D grid and contour map using the Terrain generator plugin

by Puybaret » Tue Nov 07, 2023 4:41 pm

Here's another trick which consists of transforming the surface to grid lines in OBJ format:
- generate the terrain with the plug-in
- change its color to black (or any other color you want for the grid)
- export it to OBJ format, choosing Export selection option when prompted
- open the generated OBJ file with an editor able to handle regular expressions
- replace

Code: Select all

f \d+//\d+ (\d+)//\d+ (\d+)//\d+
by

Code: Select all

l $1 $2
- save the modified OBJ file
- import the modified OBJ file in Sweet Home 3D

Good luck!