twak / chordatlas

data driven urban procedural modeling

Home Page:http://www.twak.co.uk/2018/09/frankengan-guided-detail-synthesis-for.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

integrated obj model export

Wii92 opened this issue · comments

Thanks for providing this awesome tool!

Is there any way to export the integrated minimesh models?

hey,

You can get similar meshes using systems such as this: https://github.com/retroplasma/earth-reverse-engineering

Chordatlas has an option to export to OBJ. If you show the minimesh, it might export it?

I tried it, but an empty obj model is exported.

Maybe the earth-reverse-engineering is alternative choice

Ah yeah, your probably need to have to do some coding: MiniGen would have to implement IDumpObjs, then copy the implementation from JmeGen:

	@Override
	public void dumpObj( ObjDump dump ) {
		Jme3z.dump(dump, gNode, 0);
	}