-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add CGAL::IO::read_OM() #8427
Add CGAL::IO::read_OM() #8427
Conversation
…s' into BGL-Openmesh_selection-GF # Conflicts: # BGL/examples/BGL_OpenMesh/CMakeLists.txt
In the demo, loading a .om file containing a surface mesh that has no feature vertices and no feature edges should not create a selection item. |
|
This pull-request was previously marked with the label |
|
Stream_support/doc/Stream_support/File_formats/Supported_file_formats.txt
Show resolved
Hide resolved
Do we have to say that this needs OM installed as third party library? Because we have not written functions for writing ourselves. |
Indeed it needs OpenMesh and it should be documented |
it is already documented |
Successfully tested in 6.1-Ic-18/19 |
## Summary of Changes The default OpenMesh point type is made of `float`s. This PR changes the traits we use in CGAL to you `double`s and ensure that reading an off/writing an om/reading om gives the same result back. This PR completes #8427 ## Release Management * Affected package(s): BGL, Demo * License and copyright ownership: unchanged
## Summary of Changes In OpenMesh, the outgoing halfedge of a boundary vertex must be the boundary halfedge. This PR fixes this orientation issue before writing the file, inside `write_OM()` This PR completes #8427 and #8612 ## Release Management * Affected package(s): BGL * License and copyright ownership: unchanged
Summary of Changes
Add a function to read an OpenMesh file (
*.om
) in CGALlab. This file format stores also edges and vertices marked as features.For the moment the function itself is not documented.
Release Management