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.
21 lines
688 B
21 lines
688 B
2 years ago
|
#pragma once
|
||
|
|
||
|
#include "declarations.h"
|
||
|
|
||
|
#include "sha-surface-mesh/matmesh.h"
|
||
|
|
||
|
#include <Eigen/Eigen>
|
||
|
|
||
|
#include <geogram/mesh/mesh.h>
|
||
|
|
||
|
namespace da {
|
||
|
namespace sha {
|
||
|
auto FastCreateRestrictedVoronoiDiagramFromMesh(const MatMesh3& mesh,
|
||
|
const Eigen::MatrixXd& mat_seeds,
|
||
|
double sharp_angle) -> VoronoiDiagram;
|
||
|
|
||
|
auto FastCreateRestrictedVoronoiDiagramFromMesh(GEO::Mesh& boundary_mesh,
|
||
|
const Eigen::MatrixXd& mat_seeds,
|
||
|
double sharp_angle) -> VoronoiDiagram;
|
||
|
} // namespace sha
|
||
|
} // namespace da
|