TDME2 1.9.121
GenerateConvexMeshes.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <ext/v-hacd/src/VHACD_Lib/public/VHACD.h>
7
8#include <tdme/tdme.h>
13
14using std::string;
15using std::vector;
16
21
22/**
23 * Convex mesh generation class
24 */
26{
27public:
29
30 /**
31 * Remove convex meshes
32 * @param prototype prototype
33 */
34 static void removeConvexMeshes(Prototype* prototype);
35
36 /**
37 * Generateconvex meshes
38 * @param prototype prototype
39 * @param mode mode
40 * @param popUps pop ups which is optional
41 * @param pathName path name
42 * @param fileName file name
43 * @param convexMeshTMsData convex mesh TM data vectors
44 * @param parameters parameters
45 * @return success
46 */
47 static bool generateConvexMeshes(
48 Prototype* prototype,
49 Mode mode,
50 PopUps* popUps,
51 const string& pathName,
52 const string& fileName,
53 vector<vector<uint8_t>>& convexMeshTMsData,
54 VHACD::IVHACD::Parameters parameters = VHACD::IVHACD::Parameters()
55 );
56
57private:
58
59 /**
60 * Create model
61 * @param id id
62 * @param points points
63 * @param triangles triangles
64 * @param pointCount point count
65 * @param triangleCount triangle count
66 */
67 static Model* createModel(const string& id, double* points, unsigned int* triangles, unsigned int pointCount, unsigned int triangleCount);
68
69 /**
70 * Create model
71 * @param id id
72 * @param triangles triangles
73 */
74 static Model* createModel(const string& id, vector<Triangle>& triangles);
75
76};
Representation of a 3d model.
Definition: Model.h:32
Triangle entity, this is not directly connectable with physics engine.
Definition: Triangle.h:19
Prototype definition.
Definition: Prototype.h:49
static void removeConvexMeshes(Prototype *prototype)
Remove convex meshes.
static bool generateConvexMeshes(Prototype *prototype, Mode mode, PopUps *popUps, const string &pathName, const string &fileName, vector< vector< uint8_t > > &convexMeshTMsData, VHACD::IVHACD::Parameters parameters=VHACD::IVHACD::Parameters())
Generateconvex meshes.
static Model * createModel(const string &id, double *points, unsigned int *triangles, unsigned int pointCount, unsigned int triangleCount)
Create model.
Pop ups controller accessor class.
Definition: PopUps.h:19