Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Compare Revisions
2ef59bf5d92afff0c1cbccde117ecf3ce85686f7...aa98be1215e118128750bfd478d4d37cdeceb17e
Commits (4)
Restrict source build to linux machines
· 1dee3f74
Jan Möbius
authored
May 29, 2018
1dee3f74
Allowing the PLY reader to read custom face ( Thanks to morgan Leborgne for the patch)
· 2b21fabf
Jan Möbius
authored
May 29, 2018
2b21fabf
Updated changelog
· c187fc97
Jan Möbius
authored
May 29, 2018
c187fc97
Merge branch 'PLY_reader' into 'master'
· aa98be12
Jan Möbius
authored
May 29, 2018
Ply reader See merge request
!174
aa98be12
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
.gitlab-ci.yml
.gitlab-ci.yml
+2
-0
Doc/changelog.docu
Doc/changelog.docu
+7
-1
src/OpenMesh/Core/IO/reader/PLYReader.cc
src/OpenMesh/Core/IO/reader/PLYReader.cc
+2
-0
No files found.
.gitlab-ci.yml
View file @
aa98be12
...
...
@@ -385,6 +385,8 @@ Sources:
only
:
-
master
script
:
"
CI/ci-source.sh"
tags
:
-
Linux
artifacts
:
paths
:
-
OpenMesh*.zip
...
...
Doc/changelog.docu
View file @
aa98be12
...
...
@@ -9,6 +9,12 @@
<tr valign=top><td><b>7.2</b> (?/?/?)</td><td>
<b>IO</b>
<ul>
<li>PLY Reader: Allowing the PLY reader to read custom face ( Thanks to morgan Leborgne for the patch)</li>
</ul>
</tr>
...
...
@@ -16,7 +22,7 @@
<b>IO</b>
<ul>
<li>Fixed slow OBJ reader (Thanks to Etienne Danvoye for the patch) </li>
<li>
OBJ Reader:
Fixed slow OBJ reader (Thanks to Etienne Danvoye for the patch) </li>
</ul>
<b>Documentation</b>
...
...
src/OpenMesh/Core/IO/reader/PLYReader.cc
View file @
aa98be12
...
...
@@ -1270,6 +1270,8 @@ bool _PLYReader_::can_u_read(std::istream& _is) const {
omerr
()
<<
"Custom face Properties defined, before 'vertex_indices' property was defined. They will be skipped"
<<
std
::
endl
;
elements_
.
back
().
properties_
.
clear
();
}
}
else
{
options_
+=
Options
::
Custom
;
}
}
...
...