File size: 266 Bytes
f6dd1c2
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TOOL_H_
#define TOOL_H_
#include "Types.h"
// Convert Mesh to libigl format to calculate geodesic distance

Scalar mesh_scaling(Mesh& src_mesh, Mesh& tar_mesh);
Vector3 Vec2Eigen(Vec3 s);
#ifdef __linux__
bool my_mkdir(std::string file_path);
#endif

#endif