mirror of https://github.com/CGAL/cgal
add input data
This commit is contained in:
parent
95e30643dd
commit
c5123bcd29
File diff suppressed because it is too large
Load Diff
|
|
@ -18,7 +18,7 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
//read in mesh
|
//read in mesh
|
||||||
Surface_mesh sm;
|
Surface_mesh sm;
|
||||||
const char* filename = (argc > 1) ? argv[1] : "./data/bunny.off";
|
const char* filename = (argc > 1) ? argv[1] : "./data/elephant.off";
|
||||||
std::ifstream in(filename);
|
std::ifstream in(filename);
|
||||||
in >> sm;
|
in >> sm;
|
||||||
//the heat intensity will hold the distance values from the source set
|
//the heat intensity will hold the distance values from the source set
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
//read in mesh
|
//read in mesh
|
||||||
Surface_mesh sm;
|
Surface_mesh sm;
|
||||||
const char* filename = (argc > 1) ? argv[1] : "./data/bunny.off";
|
const char* filename = (argc > 1) ? argv[1] : "./data/elephant.off";
|
||||||
std::ifstream in(filename);
|
std::ifstream in(filename);
|
||||||
in >> sm;
|
in >> sm;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
//read in mesh
|
//read in mesh
|
||||||
Surface_mesh sm;
|
Surface_mesh sm;
|
||||||
const char* filename = (argc > 1) ? argv[1] : "./data/bunny.off";
|
const char* filename = (argc > 1) ? argv[1] : "./data/elephant.off";
|
||||||
std::ifstream in(filename);
|
std::ifstream in(filename);
|
||||||
in >> sm;
|
in >> sm;
|
||||||
//the heat intensity will hold the distance values from the source set
|
//the heat intensity will hold the distance values from the source set
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
//read in mesh
|
//read in mesh
|
||||||
Surface_mesh sm;
|
Surface_mesh sm;
|
||||||
const char* filename = (argc > 1) ? argv[1] : "./data/bunny.off";
|
const char* filename = (argc > 1) ? argv[1] : "./data/elephant.off";
|
||||||
std::ifstream in(filename);
|
std::ifstream in(filename);
|
||||||
in >> sm;
|
in >> sm;
|
||||||
//the vertex distance map will hold the distance values from the source set
|
//the vertex distance map will hold the distance values from the source set
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue