libigl v2.5.0
Loading...
Searching...
No Matches
wire_mesh.h
Go to the documentation of this file.
1#ifndef IGL_COPYLEFT_CGAL_WIRE_MESH_H
2#define IGL_COPYLEFT_CGAL_WIRE_MESH_H
3#include "../../igl_inline.h"
4#include <Eigen/Core>
5namespace igl
6{
7 namespace copyleft
8 {
9 namespace cgal
10 {
27 template <
28 typename DerivedWV,
29 typename DerivedWE,
30 typename Derivedth,
31 typename DerivedV,
32 typename DerivedF,
33 typename DerivedJ>
35 const Eigen::MatrixBase<DerivedWV> & WV,
36 const Eigen::MatrixBase<DerivedWE> & WE,
37 const Eigen::MatrixBase<Derivedth> & th,
38 const int poly_size,
39 const bool solid,
40 Eigen::PlainObjectBase<DerivedV> & V,
41 Eigen::PlainObjectBase<DerivedF> & F,
42 Eigen::PlainObjectBase<DerivedJ> & J);
45 template <
46 typename DerivedWV,
47 typename DerivedWE,
48 typename DerivedV,
49 typename DerivedF,
50 typename DerivedJ>
52 const Eigen::MatrixBase<DerivedWV> & WV,
53 const Eigen::MatrixBase<DerivedWE> & WE,
54 const double th,
55 const int poly_size,
56 const bool solid,
57 Eigen::PlainObjectBase<DerivedV> & V,
58 Eigen::PlainObjectBase<DerivedF> & F,
59 Eigen::PlainObjectBase<DerivedJ> & J);
62 template <
63 typename DerivedWV,
64 typename DerivedWE,
65 typename DerivedV,
66 typename DerivedF,
67 typename DerivedJ>
69 const Eigen::MatrixBase<DerivedWV> & WV,
70 const Eigen::MatrixBase<DerivedWE> & WE,
71 const double th,
72 const int poly_size,
73 Eigen::PlainObjectBase<DerivedV> & V,
74 Eigen::PlainObjectBase<DerivedF> & F,
75 Eigen::PlainObjectBase<DerivedJ> & J);
76
77 }
78 }
79}
80
81#ifndef IGL_STATIC_LIBRARY
82# include "wire_mesh.cpp"
83#endif
84#endif
#define IGL_INLINE
Definition igl_inline.h:15
void wire_mesh(const Eigen::MatrixBase< DerivedWV > &WV, const Eigen::MatrixBase< DerivedWE > &WE, const Eigen::MatrixBase< Derivedth > &th, const int poly_size, const bool solid, Eigen::PlainObjectBase< DerivedV > &V, Eigen::PlainObjectBase< DerivedF > &F, Eigen::PlainObjectBase< DerivedJ > &J)
Construct a "wire" or "wireframe" or "strut" surface mesh, given a one-dimensional network of straigh...
Definition AABB.h:17