Skip to content

Commit

Permalink
fix: add a header message
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanchristopheruel committed Mar 20, 2024
1 parent 6865315 commit 229a321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/include/openstl/core/stl.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ namespace openstl
template<typename Stream, typename Container>
void serializeBinaryStl(const Container& triangles, Stream& stream) {
// Write header (80 bytes for comments)
char header[80] = {0};
char header[80] = "STL Exported by OpenSTL [https://github.com/Innoptech/OpenSTL]";
stream.write(header, 80);

// Write triangle count (4 bytes)
Expand Down

0 comments on commit 229a321

Please sign in to comment.