mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
12 lines
140 B
C++
12 lines
140 B
C++
#ifndef MESH_UTILS_H
|
|
#define MESH_UTILS_H
|
|
|
|
#include "mesh.h"
|
|
|
|
class MeshUtils {
|
|
public:
|
|
static void create_cone(Mesh *mesh);
|
|
};
|
|
|
|
#endif
|