Create mesh using a stream of STL file given via stdin #8144
Unanswered
AlbertDeTerre
asked this question in
Q&A
Replies: 2 comments
-
Update !I found that using a stringstream instead of an istream make it work: std::stringstream input_stream;
input_stream << std::cin::rdbuf << endl; Is there a explanation to that ? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Not really. Have you found clues since then? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I would like to create a Surface_mesh object using a stream of an STL file that I receive via STDIN.
When I try to create the mesh using the stream received, the mesh is not created... Why does this happen?
Code
Ouput
Can't create the mesh
Additional information
Beta Was this translation helpful? Give feedback.
All reactions