Python Forum
how to draw terrain like minecraft in python using opengl with perlin noise value? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: how to draw terrain like minecraft in python using opengl with perlin noise value? (/thread-1703.html)



how to draw terrain like minecraft in python using opengl with perlin noise value? - hsunteik - Jan-21-2017

In my previous thread/post ,I have asked a question about drawing Perlin noise terrain,mekire have helped me quite a lot by teaching me how to draw 2d terrain with generated Perlin noise value using pygame (pygame.surface.fill),
https://python-forum.io/Thread-what-should-i-do-after-generating-the-perlin-noise-value

but if I want to draw it in 3d where I need to input the coordinate/vector as parameter for it to draw at a location  ,how do I do it with opengl?


Note:I don't need the full code,I just want a tutorial that teach me how to render 3d terrain with perlin noise,although just a few lines of 3d terrain rendering code here (dont need all the noise generation part)will be easier for me.