libigl v2.5.0
Loading...
Searching...
No Matches
frame_field.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 Daniele Panozzo <daniele.panozzo@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_COMISO_FRAMEFIELD_H
9#define IGL_COMISO_FRAMEFIELD_H
10
11#include "../../igl_inline.h"
12#include "../../PI.h"
13#include <Eigen/Dense>
14#include <vector>
15
16namespace igl
17{
18namespace copyleft
19{
20namespace comiso
21{
38 const Eigen::MatrixXd& V,
39 const Eigen::MatrixXi& F,
40 const Eigen::VectorXi& b,
41 const Eigen::MatrixXd& bc1,
42 const Eigen::MatrixXd& bc2,
43 Eigen::MatrixXd& FF1,
44 Eigen::MatrixXd& FF2
45 );
46}
47}
48}
49
50#ifndef IGL_STATIC_LIBRARY
51# include "frame_field.cpp"
52#endif
53
54#endif
#define IGL_INLINE
Definition igl_inline.h:15
void frame_field(const Eigen::MatrixXd &V, const Eigen::MatrixXi &F, const Eigen::VectorXi &b, const Eigen::MatrixXd &bc1, const Eigen::MatrixXd &bc2, Eigen::MatrixXd &FF1, Eigen::MatrixXd &FF2)
Generate a piecewise-constant frame-field field from a sparse set of constraints on faces using the a...
Definition AABB.h:17