123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef IGL_EMBREE_LINE_MESH_INTERSECTION_H
- #define IGL_EMBREE_LINE_MESH_INTERSECTION_H
- #include <igl/igl_inline.h>
- #include <Eigen/Dense>
- #include <Eigen/Sparse>
- #include <vector>
- namespace igl
- {
- namespace embree
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <typename ScalarMatrix, typename IndexMatrix>
- IGL_INLINE ScalarMatrix line_mesh_intersection
- (
- const ScalarMatrix & V_source,
- const ScalarMatrix & N_source,
- const ScalarMatrix & V_target,
- const IndexMatrix & F_target
- );
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "line_mesh_intersection.cpp"
- #endif
- #endif
|