Browse Source

public private

Former-commit-id: 6c900639a15fc36fb881e579f1afbc46d5b86e62
Alec Jacobson 9 years ago
parent
commit
6798fd1265
1 changed files with 3 additions and 2 deletions
  1. 3 2
      include/igl/copyleft/boolean/CSGTree.h

+ 3 - 2
include/igl/copyleft/boolean/CSGTree.h

@@ -26,13 +26,14 @@ namespace igl
       //template <typename DerivedF>
       class CSGTree
       {
-        private:
+        public:
           typedef CGAL::Epeck::FT ExactScalar;
-          typedef Eigen::Matrix<ExactScalar,Eigen::Dynamic,3> MatrixX3E;
           //typedef Eigen::PlainObjectBase<DerivedF> POBF;
           typedef Eigen::MatrixXi POBF;
           typedef POBF::Index FIndex;
+          typedef Eigen::Matrix<ExactScalar,Eigen::Dynamic,3> MatrixX3E;
           typedef Eigen::Matrix<FIndex,Eigen::Dynamic,1> VectorJ;
+        private:
           // Resulting mesh
           MatrixX3E m_V;
           POBF m_F;