libigl v2.5.0
Loading...
Searching...
No Matches
nrosy.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_NROSY_H
9#define IGL_COMISO_NROSY_H
10
11#include <Eigen/Core>
12#include <Eigen/Sparse>
13#include "../../igl_inline.h"
14
15namespace igl
16{
17 namespace copyleft
18 {
19 namespace comiso
20 {
37 const Eigen::MatrixXd& V,
38 const Eigen::MatrixXi& F,
39 const Eigen::VectorXi& b,
40 const Eigen::MatrixXd& bc,
41 const Eigen::VectorXi& b_soft,
42 const Eigen::VectorXd& w_soft,
43 const Eigen::MatrixXd& bc_soft,
44 int N,
45 double soft,
46 Eigen::MatrixXd& R,
47 Eigen::VectorXd& S
48 );
51 const Eigen::MatrixXd& V,
52 const Eigen::MatrixXi& F,
53 const Eigen::VectorXi& b,
54 const Eigen::MatrixXd& bc,
55 int N,
56 Eigen::MatrixXd& R,
57 Eigen::VectorXd& S
58 );
59
60 }
61}
62}
63
64#ifndef IGL_STATIC_LIBRARY
65# include "nrosy.cpp"
66#endif
67
68#endif
#define IGL_INLINE
Definition igl_inline.h:15
void nrosy(const Eigen::MatrixXd &V, const Eigen::MatrixXi &F, const Eigen::VectorXi &b, const Eigen::MatrixXd &bc, const Eigen::VectorXi &b_soft, const Eigen::VectorXd &w_soft, const Eigen::MatrixXd &bc_soft, int N, double soft, Eigen::MatrixXd &R, Eigen::VectorXd &S)
Generate a N-RoSy field from a sparse set of constraints.
Definition AABB.h:17