nxddsnc / gltf-to-3dtiles

A command line tool to convert gltf to 3dtiles format.
Apache License 2.0
158 stars 47 forks source link

Add git action for binary build #13

Closed chenzaichun closed 4 years ago

chenzaichun commented 4 years ago

I've created a simple github action for binary build and release it.

nxddsnc commented 4 years ago

Thanks!

chenzaichun commented 4 years ago

It's simple build for POC, Maybe you could modify the action for other steps. As I want to test the binary but I don't have the vs env.

nxddsnc commented 4 years ago

这个项目本身也是一个POC,里面还有很多坑没有填上,只是用来验证这种3dtile生成方案的可行性,现在也没有持续维护了。

chenzaichun commented 4 years ago

那现在你采用什么方案,因为我刚接触这一块,不知道用什么工具能正确的转换为支持分块和LOD的3dtiles。

nxddsnc commented 4 years ago

貌似确实没有现成的工具,所以当时才想自己写来着,现在已经不在做3dtile相关的东西了,感觉用这种思路是没有问题的,只是做三角网格简化的算法不够好,二次误差的方式很难在保持原有特征的情况下将面数减到很少,所以如果要真正用起来估计还是得好好搞一下减面算法。 另外个人感觉也和使用场景有关系,要做一个通用的转换功能要考虑的东西太多了,针对特定场景调整减面的算法可能更好一些,并且在某些场景下,使用addtive的方式会比replace的方式更好一点。