Browse Source

avg vertices

Teseo Schneider 6 years ago
parent
commit
dfaeac6092
1 changed files with 7 additions and 7 deletions
  1. 7 7
      include/igl/average_onto_vertices.h

+ 7 - 7
include/igl/average_onto_vertices.h

@@ -1,24 +1,24 @@
 // This file is part of libigl, a simple c++ geometry processing library.
 // This file is part of libigl, a simple c++ geometry processing library.
-// 
+//
 // Copyright (C) 2013 Alec Jacobson <[email protected]>
 // Copyright (C) 2013 Alec Jacobson <[email protected]>
-// 
-// This Source Code Form is subject to the terms of the Mozilla Public License 
-// v. 2.0. If a copy of the MPL was not distributed with this file, You can 
+//
+// This Source Code Form is subject to the terms of the Mozilla Public License
+// v. 2.0. If a copy of the MPL was not distributed with this file, You can
 // obtain one at http://mozilla.org/MPL/2.0/.
 // obtain one at http://mozilla.org/MPL/2.0/.
 #ifndef IGL_AVERAGE_ONTO_VERTICES_H
 #ifndef IGL_AVERAGE_ONTO_VERTICES_H
 #define IGL_AVERAGE_ONTO_VERTICES_H
 #define IGL_AVERAGE_ONTO_VERTICES_H
 #include "igl_inline.h"
 #include "igl_inline.h"
 
 
 #include <Eigen/Dense>
 #include <Eigen/Dense>
-namespace igl 
+namespace igl
 {
 {
-  // average_onto_vertices 
+  // average_onto_vertices
   // Move a scalar field defined on faces to vertices by averaging
   // Move a scalar field defined on faces to vertices by averaging
   //
   //
   // Input:
   // Input:
   // V,F: mesh
   // V,F: mesh
   // S: scalar field defined on faces, Fx1
   // S: scalar field defined on faces, Fx1
-  // 
+  //
   // Output:
   // Output:
   // SV: scalar field defined on vertices
   // SV: scalar field defined on vertices
   template<typename DerivedV,typename DerivedF,typename DerivedS,typename DerivedSV>
   template<typename DerivedV,typename DerivedF,typename DerivedS,typename DerivedSV>