You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
716 B
24 lines
716 B
//
|
|
// Created by cflin on 5/4/23.
|
|
//
|
|
|
|
#ifndef DESIGNAUTO_HEATIRREGULARMESH_H
|
|
#define DESIGNAUTO_HEATIRREGULARMESH_H
|
|
|
|
#include "IrregularMesh.h"
|
|
|
|
namespace da {
|
|
namespace sha {
|
|
namespace top {
|
|
class HeatIrregularMesh : public IrregularMesh {
|
|
public:
|
|
HeatIrregularMesh(const fs_path &arbitrary_stl_path, const fs_path &chosen_stl_path,
|
|
double relative_length_of_voxel) : IrregularMesh(arbitrary_stl_path, chosen_stl_path,
|
|
relative_length_of_voxel, 1) {}
|
|
};
|
|
|
|
} // da
|
|
} // sha
|
|
} // top
|
|
|
|
#endif //DESIGNAUTO_HEATIRREGULARMESH_H
|
|
|