fixed syntax error of an example

This commit is contained in:
Emil 2022-08-25 17:39:11 +00:00 committed by GitHub
parent 17dd22e677
commit 0c222f1990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1317,7 +1317,7 @@ TriangleVertexArray::IndexDataType::INDEX_INTEGER_TYPE);
into it as a subpart. Once this is done, we can create the actual \texttt{ConcaveMeshShape}. \\
\begin{lstlisting}
TriangleMesh triangleMesh* = physicsCommon.createTriangleMesh();
TriangleMesh* triangleMesh = physicsCommon.createTriangleMesh();
// Add the triangle vertex array to the triangle mesh
triangleMesh->addSubpart(triangleArray);