2018-03-29 09:10:59 +00:00
|
|
|
#ifndef UNION_MESH_H
|
|
|
|
#define UNION_MESH_H
|
|
|
|
#include <vector>
|
|
|
|
|
2018-03-30 14:05:47 +00:00
|
|
|
int mergeMeshs(void *meshliteContext, const std::vector<int> &meshIds);
|
2018-03-29 09:10:59 +00:00
|
|
|
int unionMeshs(void *meshliteContext, const std::vector<int> &meshIds);
|
|
|
|
|
|
|
|
#endif
|