-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d6d083a
commit cedeae1
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "../include/arap_precompute.h" | ||
#include <igl/min_quad_with_fixed.h> | ||
#include <igl/arap_linear_block.h> | ||
#include <igl/cotmatrix.h> | ||
|
||
void arap_precompute( | ||
const Eigen::MatrixXd & V, | ||
const Eigen::MatrixXi & F, | ||
const Eigen::VectorXi & b, | ||
igl::min_quad_with_fixed_data<double> & data, | ||
Eigen::SparseMatrix<double> & K) | ||
{ | ||
// REPLACE WITH YOUR CODE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "../include/arap_single_iteration.h" | ||
#include <igl/polar_svd3x3.h> | ||
#include <igl/min_quad_with_fixed.h> | ||
|
||
void arap_single_iteration( | ||
const igl::min_quad_with_fixed_data<double> & data, | ||
const Eigen::SparseMatrix<double> & K, | ||
const Eigen::MatrixXd & bc, | ||
Eigen::MatrixXd & U) | ||
{ | ||
// REPLACE WITH YOUR CODE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include "biharmonic_precompute.h" | ||
#include <igl/min_quad_with_fixed.h> | ||
#include <igl/cotmatrix.h> | ||
#include <igl/massmatrix.h> | ||
#include <igl/invert_diag.h> | ||
|
||
void biharmonic_precompute( | ||
const Eigen::MatrixXd & V, | ||
const Eigen::MatrixXi & F, | ||
const Eigen::VectorXi & b, | ||
igl::min_quad_with_fixed_data<double> & data) | ||
{ | ||
// REPLACE WITH YOUR CODE | ||
data.n = V.rows(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include "biharmonic_solve.h" | ||
#include <igl/min_quad_with_fixed.h> | ||
|
||
void biharmonic_solve( | ||
const igl::min_quad_with_fixed_data<double> & data, | ||
const Eigen::MatrixXd & bc, | ||
Eigen::MatrixXd & D) | ||
{ | ||
// REPLACE WITH YOUR CODE | ||
D = Eigen::MatrixXd::Zero(data.n,3); | ||
} |