From 402ea0ed46973581a10d272fbe05829ca87499ae Mon Sep 17 00:00:00 2001 From: Jeongseok Lee <jslee02@gmail.com> Date: Fri, 1 May 2015 11:15:00 -0400 Subject: [PATCH] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 492826f7..6cfa0a14 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ std::vector<Triangle> triangles; // code to set the vertices and triangles ... // BVHModel is a template class for mesh geometry, for default OBBRSS template is used -typedef BVHModel<OBBRSS>* Model; +typedef BVHModel<OBBRSS> Model; Model* model = new Model(); // add the mesh data into the BVHModel structure model->beginModel(); -- GitLab