Skip to content

Commit 06fc509

Browse files
committed
Minor update.
1 parent 35598a7 commit 06fc509

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ You can build a shared library and all the examples by `CMake` with the followin
3636
```shell
3737
$ git clone https://github.com/tatsy/tinymesh.git --depth 1
3838
$ cd tinymesh
39+
$ git submodule update --init --recursive
3940
$ mkdir build && cd build
4041
$ cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_EXAMPLES=ON ..
4142
$ cmake --build . --config Release --parallel 2

src/tinymesh/polymesh/mesh.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ std::vector<Vec3> Mesh::getVertices() const {
9292
for (const auto &v : vertices_) {
9393
ret.push_back(v->pos());
9494
}
95-
printf("%f %f %f\n", ret[0].x(), ret[0].y(), ret[0].z());
9695
return ret;
9796
}
9897

0 commit comments

Comments
 (0)