Skip to content

Commit 63c0962

Browse files
amocknmwsharp
authored andcommitted
added missing include and missing semicolon to readme
1 parent 0615cd7 commit 63c0962

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ C++:
1919

2020
``` C++
2121
#include "polyscope/polyscope.h"
22+
#include "polyscope/point_cloud.h"
2223
#include "polyscope/surface_mesh.h"
2324

2425
// Initialize polyscope
2526
polyscope::init();
2627

2728
// Register a point cloud
2829
// `points` is a Nx3 array-like container of points
29-
polyscope::registerPointCloud("my points", points)
30+
polyscope::registerPointCloud("my points", points);
3031

3132
// Register a surface mesh structure
3233
// `meshVerts` is a Vx3 array-like container of vertex positions

0 commit comments

Comments
 (0)