You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the function mesh.Faces, using the variable NumFaces as the buffer's length will cause the program to access unknown memory.
In fact, we should use 3 * NumFaces as the buffer's length.
In the function
mesh.Faces
, using the variableNumFaces
as the buffer's length will cause the program to access unknown memory.In fact, we should use
3 * NumFaces
as the buffer's length.As shown in the code below:
The text was updated successfully, but these errors were encountered: