mirror of https://github.com/CGAL/cgal
cleanup
This commit is contained in:
parent
40710904a7
commit
6c6d8fda48
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue