瀏覽代碼

Merge branch 'master' of github.com:libigl/libigl

Martin Thümmel 5 年之前
父節點
當前提交
6b18db7cd0
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      include/igl/adjacency_matrix.h
  2. 1 1
      include/igl/voxel_grid.h

+ 1 - 1
include/igl/adjacency_matrix.h

@@ -21,7 +21,7 @@ namespace igl
   // Inputs:
   //   F  #F by dim list of mesh simplices
   // Outputs: 
-  //   A  max(F) by max(F) cotangent matrix, each row i corresponding to V(i,:)
+  //   A  max(F) by max(F) adjacency matrix, each row i corresponding to V(i,:)
   //
   // Example:
   //   // Mesh in (V,F)

+ 1 - 1
include/igl/voxel_grid.h

@@ -21,7 +21,7 @@ namespace igl
   //   pad_count  number of cells beyond box
   // Outputs:
   //   GV  side(0)*side(1)*side(2) by 3 list of cell center positions
-  //   side  3-long list of dimension of voxel grid
+  //   side  1 by 3 list of dimension of voxel grid
   template <
     typename Scalar,
     typename DerivedGV,