Skip to content

Commit

Permalink
FIX: commented out unused cgal
Browse files Browse the repository at this point in the history
  • Loading branch information
9and3 committed Mar 28, 2024
1 parent 5489f06 commit c2eafe7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/diffCheck/IOManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

#include <open3d/Open3D.h>

#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/IO/PLY/PLY_reader.h>
// #include <CGAL/Simple_cartesian.h>
// #include <CGAL/Polyhedron_3.h>
// #include <CGAL/IO/PLY/PLY_reader.h>

typedef CGAL::Simple_cartesian<double> Kernel;
typedef CGAL::Polyhedron_3<Kernel> Polyhedron;
// typedef CGAL::Simple_cartesian<double> Kernel;
// typedef CGAL::Polyhedron_3<Kernel> Polyhedron;


namespace diffCheck::io
Expand All @@ -25,7 +25,7 @@ namespace diffCheck::io
std::shared_ptr<diffCheck::geometry::DFMesh> mesh = std::make_shared<diffCheck::geometry::DFMesh>();
std::shared_ptr<open3d::geometry::TriangleMesh> open3dMesh = open3d::io::CreateMeshFromFile(filename);
mesh->Cvt2DFMesh(open3dMesh);

// bool isFromRhino = false;
// std::ifstream file(filename);
// std::string line;
Expand Down

0 comments on commit c2eafe7

Please sign in to comment.