Mountain Maker
Create a procedural generated mountain or volcano by tweaking the parameters. Keep the size below 200 for performance reasons. Selecting Round will cut the mountain base into a circle, and selecting Volcano will add a crater in the middle. Adjust the four smoothing passes to set how jagged or smooth you want your mountain. The generated mountain will be displayed as a 3D contour plot for you to inspect.
To generate and STL of your mountain, export to a csv file, and use the following R code to generate the 3d file. You can then import to Blender or you 3D editing program of choice.
<pre>library(r2stl)
Mountain<-read.csv("C:/Users/SampleUser/Downloads/MountainFile.csv")
z <- as.matrix(Mountain*100+10)
x <- 1:dim(Mountain)[1]
y <- 1:dim(Mountain)[2]
r2stl(x, y, z, filename ="C:/Users/SampleUser/Documents/Example.stl", show.persp = TRUE)
| Published | 1 day ago |
| Status | Released |
| Category | Tool |
| Platforms | HTML5 |
| Author | starfishrobot |
| Tags | Procedural Generation, tool |

Leave a comment
Log in with itch.io to leave a comment.