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.
19 lines
390 B
19 lines
390 B
1 year ago
|
#include <Eigen/Core>
|
||
|
namespace igl
|
||
|
{
|
||
|
template <typename Scalar>
|
||
|
struct HeatGeodesicsData;
|
||
|
}
|
||
|
|
||
|
bool update(
|
||
|
const Eigen::MatrixXd & V,
|
||
|
const Eigen::MatrixXi & F,
|
||
|
const double t,
|
||
|
const double x,
|
||
|
const double y,
|
||
|
const Eigen::Matrix4f& model,
|
||
|
const Eigen::Matrix4f& proj,
|
||
|
const Eigen::Vector4f& viewport,
|
||
|
const igl::HeatGeodesicsData<double>& data,
|
||
|
Eigen::VectorXd& D);
|