I was wondering if we can create 3d meshes using C++ only such as characters,buildings,roads,mountains etc? Is this type of thing possible?
Is this type of stuff even possible using C++ or I am day dreaming?

I was wondering if we can create 3d meshes using C++ only such as characters,buildings,roads,mountains etc? Is this type of thing possible?
It’s definitely possible to do in C++ but would take a LOT of time to do something like make a mountain, let alone creating everything you see in the photo you linked. In order to create it though C++, you’d need to manually write out things like all the vertices including UV’s, normals, and then indices for the mesh, etc. Creating meshes in Maya, Blender, etc. just export all that data through OBJ or FBX format for us.
You certainly can, though it’s not easy. You’ll need to look at the ‘CustomMeshComponent’ class.
I have Zbrush and Modo.
If this - http://static9.cdn.ubi.com/resource/en-CA/game/assassins-creed/ac/acu-gi-02_147186.jpg - type of quality can be achieved via C++ then why we need softwares like Zbrush,Maya,Modo,3dsMax etc!! ??
Can C++ create wrinkles like this - http://j1310.hizliresim.com/1g/y/u1zf4.png - on clothes?
I don’t know why it wouldn’t be easy? After all you could generate a 2D array with a set of height values and from there you could probably defer a lot of the information you need. Calculating all the necessary information isn’t exactly a difficult thing to do.
While you can generate this data procedurally and through physical simulation, the effort to write algorithms to do that is often more difficult than an artist to just make it in a content creation package.
I got it!! ZScripting