libigl v2.5.0
Loading...
Searching...
No Matches
bbw.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) 2013 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_MOSEK_BBW_H
9#define IGL_MOSEK_BBW_H
10#include "../igl_inline.h"
11#include "mosek_quadprog.h"
12#include "../bbw.h"
13#include <Eigen/Dense>
14
15namespace igl
16{
17 namespace mosek
18 {
36 template <
37 typename DerivedV,
38 typename DerivedEle,
39 typename Derivedb,
40 typename Derivedbc,
41 typename DerivedW>
43 const Eigen::PlainObjectBase<DerivedV> & V,
44 const Eigen::PlainObjectBase<DerivedEle> & Ele,
45 const Eigen::PlainObjectBase<Derivedb> & b,
46 const Eigen::PlainObjectBase<Derivedbc> & bc,
47 igl::BBWData & data,
48 igl::mosek::MosekData & mosek_data,
49 Eigen::PlainObjectBase<DerivedW> & W);
50 }
51}
52
53#ifndef IGL_STATIC_LIBRARY
54# include "bbw.cpp"
55#endif
56
57#endif
Container for BBW computation related data and flags.
Definition bbw.h:19
#define IGL_INLINE
Definition igl_inline.h:15
bool bbw(const Eigen::PlainObjectBase< DerivedV > &V, const Eigen::PlainObjectBase< DerivedEle > &Ele, const Eigen::PlainObjectBase< Derivedb > &b, const Eigen::PlainObjectBase< Derivedbc > &bc, igl::BBWData &data, igl::mosek::MosekData &mosek_data, Eigen::PlainObjectBase< DerivedW > &W)
Compute Bounded Biharmonic Weights on a given domain (V,Ele) with a given set of boundary conditions.
Definition AABB.h:17
Structure for holding MOSEK data for solving a quadratic program.
Definition mosek_quadprog.h:26