libigl v2.5.0
Loading...
Searching...
No Matches
resolve_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) 2016 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_RESOLVE_INTERSECTIONS_H
9#define IGL_COPYLEFT_CGAL_RESOLVE_INTERSECTIONS_H
10#include "../../igl_inline.h"
11#include <Eigen/Core>
12
13namespace igl
14{
15 namespace copyleft
16 {
17 namespace cgal
18 {
29 template <
30 typename DerivedV,
31 typename DerivedE,
32 typename DerivedVI,
33 typename DerivedEI,
34 typename DerivedJ,
35 typename DerivedIM>
37 const Eigen::PlainObjectBase<DerivedV> & V,
38 const Eigen::PlainObjectBase<DerivedE> & E,
39 Eigen::PlainObjectBase<DerivedVI> & VI,
40 Eigen::PlainObjectBase<DerivedEI> & EI,
41 Eigen::PlainObjectBase<DerivedJ> & J,
42 Eigen::PlainObjectBase<DerivedIM> & IM);
43 }
44 }
45}
46#ifndef IGL_STATIC_LIBRARY
47# include "resolve_intersections.cpp"
48#endif
49#endif
#define IGL_INLINE
Definition igl_inline.h:15
void resolve_intersections(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedE > &E, Eigen::PlainObjectBase< DerivedVI > &VI, Eigen::PlainObjectBase< DerivedEI > &EI, Eigen::PlainObjectBase< DerivedJ > &J, Eigen::PlainObjectBase< DerivedIM > &IM)
Given a list of possible intersecting segments with endpoints, split segments to overlap only at endp...
Definition AABB.h:17