libigl v2.5.0
Loading...
Searching...
No Matches
remesh_self_intersections.h
Go to the documentation of this file.
1// This file is part of libigl, a simple c++ geometry processing library.
2//
3// Copyright (C) 2014 Alec Jacobson <alecjacobson@gmail.com>
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License
6// v. 2.0. If a copy of the MPL was not distributed with this file, You can
7// obtain one at http://mozilla.org/MPL/2.0/.
8#ifndef IGL_COPYLEFT_CGAL_REMESH_SELF_INTERSECTIONS_H
9#define IGL_COPYLEFT_CGAL_REMESH_SELF_INTERSECTIONS_H
10#include "../../igl_inline.h"
12
13#include <Eigen/Dense>
14
15namespace igl
16{
17 namespace copyleft
18 {
19 namespace cgal
20 {
54 template <
55 typename DerivedV,
56 typename DerivedF,
57 typename DerivedVV,
58 typename DerivedFF,
59 typename DerivedIF,
60 typename DerivedJ,
61 typename DerivedIM>
63 const Eigen::MatrixBase<DerivedV> & V,
64 const Eigen::MatrixBase<DerivedF> & F,
65 const RemeshSelfIntersectionsParam & params,
66 Eigen::PlainObjectBase<DerivedVV> & VV,
67 Eigen::PlainObjectBase<DerivedFF> & FF,
68 Eigen::PlainObjectBase<DerivedIF> & IF,
69 Eigen::PlainObjectBase<DerivedJ> & J,
70 Eigen::PlainObjectBase<DerivedIM> & IM);
74 template <
75 typename DerivedV,
76 typename DerivedF,
77 typename DerivedVV,
78 typename DerivedFF,
79 typename DerivedIF,
80 typename DerivedJ>
82 const Eigen::MatrixBase<DerivedV> & V,
83 const Eigen::MatrixBase<DerivedF> & F,
84 const RemeshSelfIntersectionsParam & params,
85 Eigen::PlainObjectBase<DerivedVV> & VV,
86 Eigen::PlainObjectBase<DerivedFF> & FF,
87 Eigen::PlainObjectBase<DerivedIF> & IF,
88 Eigen::PlainObjectBase<DerivedJ> & J);
89 }
90 }
91}
92
93#ifndef IGL_STATIC_LIBRARY
94# include "remesh_self_intersections.cpp"
95#endif
96
97#endif
#define IGL_INLINE
Definition igl_inline.h:15
void remesh_self_intersections(const Eigen::MatrixBase< DerivedV > &V, const Eigen::MatrixBase< DerivedF > &F, const RemeshSelfIntersectionsParam &params, Eigen::PlainObjectBase< DerivedVV > &VV, Eigen::PlainObjectBase< DerivedFF > &FF, Eigen::PlainObjectBase< DerivedIF > &IF, Eigen::PlainObjectBase< DerivedJ > &J, Eigen::PlainObjectBase< DerivedIM > &IM)
Given a triangle mesh (V,F) compute a new mesh (VV,FF) which is the same as (V,F) except that any sel...
Definition AABB.h:17
Parameters for SelfIntersectMesh, remesh_self_intersections and remesh_intersections,...
Definition RemeshSelfIntersectionsParam.h:21