Welcome to mirror list, hosted at ThFree Co, Russian Federation.

subdivide.hpp « src « quadriflow « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a93c58ac2a7270036a1193445904b08486851fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <Eigen/Core>
#include <Eigen/Dense>

#include "parametrizer.hpp"
using namespace Eigen;

namespace qflow {

void subdivide(MatrixXi &F, MatrixXd &V, VectorXd& rho, VectorXi &V2E, VectorXi &E2E, VectorXi &boundary,
               VectorXi &nonmanifold, double maxLength);

void subdivide_edgeDiff(MatrixXi &F, MatrixXd &V, MatrixXd &N, MatrixXd &Q, MatrixXd &O, MatrixXd* S,
                    VectorXi &V2E, VectorXi &E2E, VectorXi &boundary, VectorXi &nonmanifold,
                    std::vector<Vector2i> &edge_diff, std::vector<DEdge> &edge_values,
                    std::vector<Vector3i> &face_edgeOrients, std::vector<Vector3i> &face_edgeIds,
                    std::vector<int>& sharp_edges, std::map<int, int> &singularities, int max_len);
} // namespace qflow