libigl v2.5.0
Loading...
Searching...
No Matches
seam_edges.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 Yotam Gingold <yotam@yotamgingold.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_SEAM_EDGES_H
9#define IGL_SEAM_EDGES_H
10#include "igl_inline.h"
11#include <Eigen/Core>
12namespace igl
13{
42 template <
43 typename DerivedV,
44 typename DerivedTC,
45 typename DerivedF,
46 typename DerivedFTC,
47 typename Derivedseams,
48 typename Derivedboundaries,
49 typename Derivedfoldovers>
51 const Eigen::PlainObjectBase<DerivedV>& V,
52 const Eigen::PlainObjectBase<DerivedTC>& TC,
53 const Eigen::PlainObjectBase<DerivedF>& F,
54 const Eigen::PlainObjectBase<DerivedFTC>& FTC,
55 Eigen::PlainObjectBase<Derivedseams>& seams,
56 Eigen::PlainObjectBase<Derivedboundaries>& boundaries,
57 Eigen::PlainObjectBase<Derivedfoldovers>& foldovers);
58}
59#ifndef IGL_STATIC_LIBRARY
60# include "seam_edges.cpp"
61#endif
62#endif
#define IGL_INLINE
Definition igl_inline.h:15
Definition AABB.h:17
void seam_edges(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedTC > &TC, const Eigen::PlainObjectBase< DerivedF > &F, const Eigen::PlainObjectBase< DerivedFTC > &FTC, Eigen::PlainObjectBase< Derivedseams > &seams, Eigen::PlainObjectBase< Derivedboundaries > &boundaries, Eigen::PlainObjectBase< Derivedfoldovers > &foldovers)
Finds all UV-space boundaries of a mesh.