Wildmeshing Toolkit
cdt_lib.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <array>
3 #include <cstdint>
4 #include <string>
5 #include <vector>
6 
7 namespace cdt {
8 
9 class inputPLC;
10 class TetMesh;
11 } // namespace cdt
12 
13 namespace cdt_lib {
14 
15 void cdt_to_string(
16  const std::vector<double>& V,
17  const uint32_t npts,
18  const std::vector<uint32_t>& F,
19  const uint32_t ntri,
20  std::vector<std::array<bool, 4>>& local_f_on_input,
21  std::vector<std::array<int64_t, 4>>& T_final,
22  std::vector<std::array<std::string, 3>>& V_final,
23  bool inner_only);
24 
25 
26 } // namespace cdt_lib
void cdt_to_string(const std::vector< double > &V, const uint32_t npts, const std::vector< uint32_t > &F, const uint32_t ntri, std::vector< std::array< bool, 4 >> &local_f_on_input, std::vector< std::array< int64_t, 4 >> &T_final, std::vector< std::array< std::string, 3 >> &V_final, bool inner_only)
Definition: cdt_lib.cpp:166
Definition: cdt_lib.hpp:7