Made changes accordign to PR review

This commit is contained in:
johltn
2021-02-20 15:35:33 +01:00
parent 415203e9c2
commit 5be6954fd7
4 changed files with 19 additions and 107 deletions
+1 -6
View File
@@ -28,22 +28,17 @@
#include "../serializers/GeometrySerializer.h"
// http://people.sc.fsu.edu/~jburkardt/txt/obj_format.txt
class HdfSerializer : public GeometrySerializer {
private:
const std::string hdf_filename;
unsigned int vcount_total;
H5::H5File file;
std::set<std::string> guids;
std::vector<double> double_data_container;
std::vector<int> int_data_container;
const H5std_string DATASET_NAME_POSITIONS;
const H5std_string DATASET_NAME_NORMALS;
const H5std_string DATASET_NAME_INDICES;
const H5std_string DATASET_NAME_OCCT;
H5::CompType mtype1;
H5::CompType mtype2;
H5::CompType mtype3;
public: