dust3d/src/unionmesh.h

9 lines
213 B
C
Raw Normal View History

#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);
int unionMeshs(void *meshliteContext, const std::vector<int> &meshIds);
#endif