You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
502 B
22 lines
502 B
1 year ago
|
|
||
|
#include <Eigen/Core>
|
||
|
|
||
|
namespace igl
|
||
|
{
|
||
|
class ARAPData;
|
||
|
template <typename LbsMatrixType, typename SSCALAR>
|
||
|
// Seriously, windows? Why are struct and class different?
|
||
|
struct ArapDOFData;
|
||
|
}
|
||
|
|
||
|
void precomputation(
|
||
|
const Eigen::MatrixXd & V,
|
||
|
const Eigen::MatrixXi & F,
|
||
|
const Eigen::MatrixXd & W,
|
||
|
Eigen::MatrixXd & M,
|
||
|
Eigen::VectorXi & b,
|
||
|
Eigen::MatrixXd & L,
|
||
|
igl::ARAPData & arap_data,
|
||
|
igl::ARAPData & arap_grouped_data,
|
||
|
igl::ArapDOFData<Eigen::MatrixXd,double> & arap_dof_data);
|