This commit is contained in:
Andreas Fabri 2007-02-11 19:19:51 +00:00
parent 40710904a7
commit 6c6d8fda48
4 changed files with 11 additions and 20 deletions

View File

@ -1,13 +1,14 @@
#ifndef _POLYHEDRALSURF_H_
#define _POLYHEDRALSURF_H_
#include <boost/property_map.hpp>
#include <boost/graph/properties.hpp>
#include <CGAL/Cartesian.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/IO/Polyhedron_iostream.h>
#include <boost/property_map.hpp>
#include <boost/graph/properties.hpp>
#include <algorithm>
#include <vector>
#include <list>

View File

@ -1,16 +1,12 @@
#include <CGAL/basic.h>
#include <CGAL/Cartesian.h>
#include <CGAL/Monge_via_jet_fitting.h>
#include <CGAL/Lapack/Linear_algebra_lapack.h>
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <vector>
#include <boost/property_map.hpp>
#include <CGAL/Monge_via_jet_fitting.h>
#include <CGAL/Lapack/Linear_algebra_lapack.h>
#include "PolyhedralSurf.h"
#include "PolyhedralSurf_operations.h"
@ -285,6 +281,6 @@ int main(int argc, char *argv[])
out_verbose->close();
delete out_verbose;
}
return 1;
return 0;
}

View File

@ -1,13 +1,9 @@
#include <CGAL/basic.h>
#include <CGAL/Cartesian.h>
#include <CGAL/Monge_via_jet_fitting.h>
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <vector>
#include <CGAL/Monge_via_jet_fitting.h>
typedef double DFT;
typedef CGAL::Cartesian<DFT> Data_Kernel;

View File

@ -1,13 +1,9 @@
#include <CGAL/basic.h>
#include <CGAL/Cartesian.h>
#include <CGAL/Monge_via_jet_fitting.h>
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <vector>
#include <CGAL/Monge_via_jet_fitting.h>
typedef double DFT;
typedef CGAL::Cartesian<DFT> Data_Kernel;
@ -69,4 +65,6 @@ int main()
assert(monge_form.coefficients()[1] >= -0.4 - precision);
assert(monge_form.coefficients()[1] <= -0.4 + precision);
std::cout << "success\n";
return 0;
}