summaryrefslogtreecommitdiff
path: root/src/GudhUI/view/FirstCoordProjector.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-11-06 14:27:18 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-11-06 14:27:18 +0000
commit606115b399b010b8ebfbf13f6a8ca2b1c1bf17cd (patch)
treef13206921b7b77ca3d2cc66c4ed612300bdaebd8 /src/GudhUI/view/FirstCoordProjector.h
parentdd2a15d1a8d2607848527513210330baebce9e8e (diff)
parent72f647ad4b802d08072925a374324e7ace4b2c4d (diff)
Merge last trunk modifications
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/bitmap@889 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: d90cb012ff7f3a9070ea19e3c6651cc455bebdad
Diffstat (limited to 'src/GudhUI/view/FirstCoordProjector.h')
-rw-r--r--src/GudhUI/view/FirstCoordProjector.h44
1 files changed, 30 insertions, 14 deletions
diff --git a/src/GudhUI/view/FirstCoordProjector.h b/src/GudhUI/view/FirstCoordProjector.h
index 2659eef1..529d2d42 100644
--- a/src/GudhUI/view/FirstCoordProjector.h
+++ b/src/GudhUI/view/FirstCoordProjector.h
@@ -1,24 +1,40 @@
-/*
- * FirstCoordProjector.h
+/* This file is part of the Gudhi Library. The Gudhi library
+ * (Geometric Understanding in Higher Dimensions) is a generic C++
+ * library for computational topology.
*
- * Created on: Aug 27, 2014
- * Author: dsalinas
+ * Author(s): David Salinas
+ *
+ * Copyright (C) 2014 INRIA Sophia Antipolis-Mediterranee (France)
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
-#ifndef FIRSTCOORDPROJECTOR_H_
-#define FIRSTCOORDPROJECTOR_H_
+#ifndef VIEW_FIRSTCOORDPROJECTOR_H_
+#define VIEW_FIRSTCOORDPROJECTOR_H_
#include "utils/UI_utils.h"
#include "Projector3D.h"
-class FirstCoordProjector3D : public Projector3D{
- typedef Projector3D::Point Point;
- typedef Projector3D::Point_3 Point_3;
+class FirstCoordProjector3D : public Projector3D {
+ typedef Projector3D::Point Point;
+ typedef Projector3D::Point_3 Point_3;
- Point_3 operator()(const Point& p) const{
- assert(p.dimension()>=3);
- return Point_3(p.x(),p.y(),p.z());
- }
+ Point_3 operator()(const Point& p) const {
+ assert(p.dimension() >= 3);
+ return Point_3(p.x(), p.y(), p.z());
+ }
};
-#endif /* FIRSTCOORDPROJECTOR_H_ */
+#endif // VIEW_FIRSTCOORDPROJECTOR_H_