Merge pull request #3013 from sgiraudot/PSP-Fix_ply_reading_properties-GF

PSP: Fix PLY reading properties other than those of vertices
This commit is contained in:
Laurent Rineau 2018-04-20 15:09:23 +02:00 committed by GitHub
commit 05f6780968
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -446,7 +446,11 @@ namespace internal {
m_properties = &m_face_properties;
}
else
continue;
{
reading_faces = false;
reading_vertices = false;
continue;
}
}
}